Sazabi
APIIntegrations

List integration providers

GET
/integrations/providers

List supported integration providers and how many connections the organization has for each.

Query Parameters

organizationId?string

Organization to list providers for. Auto-filled from CLI and SDK context when omitted. User tokens must supply it unless the credential's fixed scope resolves it; secret keys may omit it (the key's organization applies).

Length1 <= length

Response Body

application/json

curl -X GET "https://example.com/integrations/providers"
{  "providers": [    {      "id": "slack",      "name": "string",      "description": "string",      "authType": "oauth",      "capabilities": [        "alert_routing"      ],      "connectionCount": -9007199254740991,      "credentialFields": [        {          "name": "string",          "label": "string",          "required": true,          "secret": true,          "description": "string"        }      ],      "browserConnectSupported": true    }  ]}