Skip to main content
GET
/
api
/
v1
/
connectors
List Connectors
curl --request GET \
  --url https://api.example.com/api/v1/connectors \
  --header 'Authorization: Basic <encoded-value>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "url": "<string>",
      "state": "created",
      "auth_request": {
        "authorization_endpoint": "<string>",
        "type": "code"
      },
      "disconnect_reason": "<string>",
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "total_count": 123,
  "next_page_token": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "has_more": false
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

Successful Response

items
ConnectorResponse · object[]
required
total_count
integer
required
next_page_token
string<uuid> | null
required
has_more
boolean
default:false