Debriefer

List all connectors

GET
/api/v1/connectors

Query Parameters

limit?integer
Default20
Range1 <= value <= 100
starting_after?string
ending_before?string

Response Body

application/json

curl -X GET "https://loading/api/v1/connectors"
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "organization_id": "string",
      "test_mode": true,
      "name": "string",
      "type": "google_meet",
      "status": "active",
      "auth": {
        "credentials_id": "string",
        "service_account": "string"
      },
      "bot_config": {
        "display_name": "string",
        "avatar_url": "http://example.com",
        "join_message": "string",
        "auto_record": true
      },
      "metadata": {
        "property1": null,
        "property2": null
      },
      "created_at": "string",
      "updated_at": "string",
      "object": "connector"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}