POST
/
api
/
changes
/
v1
/
by-id
BatchChange
curl --request POST \
  --url https://developer.synq.io/api/changes/v1/by-id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "changeIds": [
    "<string>"
  ]
}'
{
  "changes": {}
}

Authorizations

Authorization
string
header
required

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

Body

application/json

BatchChangeRequest contains the parameters needed to retrieve multiple changes by their IDs.

changeIds
string[]

List of change IDs to retrieve. Each ID uniquely identifies a specific change in the system.

Response

200 - application/json

Success

BatchChangeResponse contains the requested changes mapped by their IDs.

changes
object

Map of change ID to EntityChange. Only includes changes that were found and accessible. Missing changes are omitted from the response.