Skip to main content
POST
/
systemOfRecordIntegration
/
clients
/
{uuid}
/
fetch
Fetch client data
curl --request POST \
  --url https://api.getcargo.io/v1/systemOfRecordIntegration/clients/{uuid}/fetch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "command": "<string>",
  "limit": 123,
  "offset": 123
}
'
{
  "count": 123,
  "records": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string
required

Resource UUID

Body

application/json

Request body schema.

command
string
required

Query or command to fetch.

limit
number

Maximum number of records to fetch.

offset
number

Number of records to skip.

Response

Successful response

count
number
required

Total number of records.

records
Records · object[]
required

Fetched records.