Skip to main content
POST
/
api
/
integrations
/
v1
/
by-id
BatchGetIntegrations
curl --request POST \
  --url https://developer.synq.io/api/integrations/v1/by-id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "integrationIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "integrations": {}
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request to fetch multiple integrations by id.

integrationIds
string<uuid>[]

Integration ids (UUIDs). Unknown ids are omitted from the response.

Required array length: 1 - 500 elements

Response

200 - application/json

Success

Response with the requested integrations.

integrations
object

The integrations that were found, keyed by integration id. Requested ids that do not exist are absent from the map.