Skip to main content
GET
/
segmentation
/
changes
/
list
List changes
curl --request GET \
  --url https://api.getcargo.io/v1/segmentation/changes/list \
  --header 'Authorization: Bearer <token>'
{
  "changes": [
    {
      "uuid": "<string>",
      "workspaceUuid": "<string>",
      "segmentUuid": "<string>",
      "slug": "<string>",
      "totalRecordsCount": 123,
      "updatedRecordsCount": 123,
      "removedRecordsCount": 123,
      "addedRecordsCount": 123,
      "unchangedRecordsCount": 123,
      "createdAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

segmentUuid
string
required

Segment identifier.

hasRecords
enum<string>

Filter changes by record kind.

Available options:
added,
updated,
removed
limit
string

Maximum number of changes to return.

offset
string

Number of changes to skip.

Response

Successful response

changes
Changes · object[]
required

List of changes.