curl --request POST \
--url https://api.getcargo.io/v1/segmentation/changes/{uuid}/fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kinds": [
"added"
],
"limit": 123,
"offset": 123
}
'{
"columns": [
{
"slug": "<string>",
"type": "string",
"label": "<string>",
"modelUuid": "<string>"
}
],
"count": 123,
"records": [
{}
]
}Fetch data for a segment change
curl --request POST \
--url https://api.getcargo.io/v1/segmentation/changes/{uuid}/fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"kinds": [
"added"
],
"limit": 123,
"offset": 123
}
'{
"columns": [
{
"slug": "<string>",
"type": "string",
"label": "<string>",
"modelUuid": "<string>"
}
],
"count": 123,
"records": [
{}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Was this page helpful?