Skip to main content
GET
/
orders
/
terms_and_conditions
/
all
Get all terms and conditions
curl --request GET \
  --url https://api.example.com/orders/terms_and_conditions/all \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "content": {},
      "related_services": [
        "<string>"
      ],
      "version": "<string>",
      "enable": true,
      "expiration": 123
    }
  ],
  "count": 0,
  "total_count": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:0
offset
integer
default:0

Response

Successful Response

items
TermsAndConditions · object[]
required
count
integer
default:0
total_count
integer
default:0