curl --request POST \
--url https://api.getcargo.io/v1/segmentation/segments/{uuid}/download \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "<string>",
"filter": {
"conjonction": "or",
"groups": [
{}
]
},
"sort": [
{
"columnSlug": "<string>",
"kind": "asc"
}
],
"limit": 123
}
'{
"urls": [
"<string>"
]
}Download data for a segment
curl --request POST \
--url https://api.getcargo.io/v1/segmentation/segments/{uuid}/download \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "<string>",
"filter": {
"conjonction": "or",
"groups": [
{}
]
},
"sort": [
{
"columnSlug": "<string>",
"kind": "asc"
}
],
"limit": 123
}
'{
"urls": [
"<string>"
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Successful response
Download URLs for segment records.
Was this page helpful?