Terms And Conditions
Path parameters
merchantNumberstring | nullableRequired
merchant number
Query parameters
shouldMaskSensitiveDatabooleanOptionalDefault:
boolean to determine if sensitive data should be masked
true
Responses
200
Success
application/json
500
Server Error
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"
}
]
}
Path parameters
merchantNumberstring | nullableRequired
merchant number
typeIDinteger · int32Required
terms and conditions type
Query parameters
shouldMaskSensitiveDatabooleanOptionalDefault:
boolean to determine if sensitive data should be masked
true
Responses
200
Success
application/json
500
Server Error
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?