curl --request GET \
--url https://api.getcargo.io/v1/connection/connectors/list \
--header 'Authorization: Bearer <token>'{
"connectors": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"userUuid": "<string>",
"name": "<string>",
"slug": "<string>",
"rateLimit": {
"unit": "day",
"max": 123
},
"cacheTtlMilliseconds": 123,
"integrationSlug": "<string>",
"playsCount": 123,
"toolsCount": 123,
"modelsCount": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"useCredits": true,
"config": "<unknown>"
}
]
}List all connectors in the workspace
curl --request GET \
--url https://api.getcargo.io/v1/connection/connectors/list \
--header 'Authorization: Bearer <token>'{
"connectors": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"userUuid": "<string>",
"name": "<string>",
"slug": "<string>",
"rateLimit": {
"unit": "day",
"max": 123
},
"cacheTtlMilliseconds": 123,
"integrationSlug": "<string>",
"playsCount": 123,
"toolsCount": 123,
"modelsCount": 123,
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"useCredits": true,
"config": "<unknown>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter connectors by integration slug.
Successful response
List of connectors.
Show child attributes
Was this page helpful?