curl --request GET \
--url https://api.getcargo.io/v1/revenueOrganization/allocations/list \
--header 'Authorization: Bearer <token>'{
"allocations": [
{
"uuid": "<string>",
"memberUuid": "<string>",
"isFallbackMember": true,
"workspaceUuid": "<string>",
"allocatedBy": {
"allocator": "<string>",
"workflowUuid": "<string>",
"workflowNodeUuid": "<string>",
"membersUuids": [
"<string>"
],
"workflowRunUuid": "<string>",
"fallbackMemberUuid": "<string>",
"modelUuid": "<string>",
"recordId": "<string>"
},
"capacityUuid": "<string>",
"recordIds": [
"<string>"
],
"allocatedAt": "<string>",
"syncedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
]
}List all allocations
curl --request GET \
--url https://api.getcargo.io/v1/revenueOrganization/allocations/list \
--header 'Authorization: Bearer <token>'{
"allocations": [
{
"uuid": "<string>",
"memberUuid": "<string>",
"isFallbackMember": true,
"workspaceUuid": "<string>",
"allocatedBy": {
"allocator": "<string>",
"workflowUuid": "<string>",
"workflowNodeUuid": "<string>",
"membersUuids": [
"<string>"
],
"workflowRunUuid": "<string>",
"fallbackMemberUuid": "<string>",
"modelUuid": "<string>",
"recordId": "<string>"
},
"capacityUuid": "<string>",
"recordIds": [
"<string>"
],
"allocatedAt": "<string>",
"syncedAt": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter allocations by member identifiers.
Filter allocations by capacity identifier.
Filter allocations by territory identifier.
Maximum number of allocations to return.
Number of allocations to skip.
Successful response
List of allocations.
Show child attributes
Was this page helpful?