Custom Domain docs
API referenceProviders

Enumerate the connectable domains a provider credential controls

POST
/providers/{provider}/zones:list

For the bulk-connect picker. The credential is used once to list zones and is never persisted here. 422 (list_not_supported) when the adapter can't enumerate zones — the console degrades to single-domain connect.

Authorization

widgetJWT
AuthorizationBearer <token>

Short-lived widget JWT minted server-side via POST /v1/tokens. Scoped to one application (and optionally one domain).

In: header

Path Parameters

provider*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/providers/string/zones:list" \  -H "Content-Type: application/json" \  -d '{    "credential": {      "token": "string"    }  }'
{  "provider": "string",  "zones": [    "string"  ]}
{  "code": "string",  "title": "string",  "details": "string"}
{  "code": "string",  "title": "string",  "details": "string"}
{  "error": "list_not_supported",  "provider": "string",  "message": "string"}
{  "code": "string",  "title": "string",  "details": "string"}