Tibata Docs
API ReferenceIntegrations

List Connections

Returns an overview of external integration connections available in the organization. Only safe, non-sensitive fields are exposed (no tokens or personal user info).

GET
/v1/integrations/connections

Authorization

AuthorizationRequiredBearer <token>

In: header

curl -X GET "https://api.tibata.ai/v1/integrations/connections" \
  -H "Authorization: Bearer <token>"

List of connections

{
  "data": [
    {
      "id": "acc_01HZ8K3P2QW4XYNR5T6V7M9BFD",
      "provider": "exact",
      "externalId": "12345"
    },
    {
      "id": "acc_02AB9L4Q3RX5YZOS6U7W8N0CGE",
      "provider": "twinfield",
      "externalId": "TW-9876"
    }
  ]
}