curl --request GET \
--url https://api.cadanapay.com/v1/platform/businesses \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "8ef9a712-cdae-4110-b1ea-9ba95abbee6e",
"name": "Wayne Enterprise",
"shortName": "W.E.",
"status": "active",
"tenantKey": "abc123",
"country": "US"
}
],
"node": {
"next": "<string>",
"previous": "<string>"
}
}Fetch all businesses
curl --request GET \
--url https://api.cadanapay.com/v1/platform/businesses \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "8ef9a712-cdae-4110-b1ea-9ba95abbee6e",
"name": "Wayne Enterprise",
"shortName": "W.E.",
"status": "active",
"tenantKey": "abc123",
"country": "US"
}
],
"node": {
"next": "<string>",
"previous": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Idempotency key of a business
Query next set of results based on limit
Query previous set of results based on limit
Maximum number of items to return per page
1 <= x <= 100