Skip to main content
GET
/
connection
/
connectors
/
{uuid}
Get connector
curl --request GET \
  --url https://api.getcargo.io/v1/connection/connectors/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "connector": {
    "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>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string
required

Resource UUID

Response

Successful response

connector
Connector · object
required

Connector details.