Terms And Conditions

Returns Terms and Conditions applicable to merchant identified by merchantNumber

get
Path parameters
merchantNumberstring | nullableRequired

merchant number

Query parameters
shouldMaskSensitiveDatabooleanOptional

boolean to determine if sensitive data should be masked

Default: true
Responses
200
Success
application/json
get
GET /api/legaldocuments/v1/TermsAndConditions/{merchantNumber} HTTP/1.1
Host: 
Accept: */*
{
  "content": [
    {
      "termsAndConditionsID": 1,
      "typeID": 1,
      "text": "text",
      "effectiveDateUTC": "2025-07-09T01:45:53.144Z"
    }
  ]
}

Returns Terms and Conditions entry for specified Type ID

get
Path parameters
merchantNumberstring | nullableRequired

merchant number

typeIDinteger · int32Required

terms and conditions type

Query parameters
shouldMaskSensitiveDatabooleanOptional

boolean to determine if sensitive data should be masked

Default: true
Responses
200
Success
application/json
get
GET /api/legaldocuments/v1/TermsAndConditions/{merchantNumber}/{typeID} HTTP/1.1
Host: 
Accept: */*
{
  "termsAndConditionsID": 1,
  "typeID": 1,
  "text": "text",
  "effectiveDateUTC": "2025-07-09T01:45:53.144Z"
}

Was this helpful?