curl --request GET \
--url https://api.example.com/v2/integrations/{id}/ \
--header 'Authorization: Bearer <token>'{
"id": 123,
"title": "<string>",
"logo": "<string>",
"fields": "<unknown>",
"validation_schema": null,
"is_configurable": true
}Retrieve an integration by ID.
curl --request GET \
--url https://api.example.com/v2/integrations/{id}/ \
--header 'Authorization: Bearer <token>'{
"id": 123,
"title": "<string>",
"logo": "<string>",
"fields": "<unknown>",
"validation_schema": null,
"is_configurable": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique integer value identifying this company integration.
Was this page helpful?