List the organization's domain claims
/api/v1/organizations/{id}/domainsLists the organization's end-user SSO domain claims with their verification status (pending, verified, or failed). A verified claim is what routes the domain's sign-ins to the organization's bound connection and admits the identity provider's assertions for it. The response is an unpaginated { items } array.
Authentication
Bearer Token
Authorization Option A JWT access token. Never send alongside X-API-Key: a request carrying both is refused.
API Key
X-API-Key Option B API key for management-tier access. Never send alongside an Authorization header: a request carrying both is refused.
Path Parameters
idstring Required Responses
application/json
items *SsoDomainResponseDto[]
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Returned object
curl -X GET "https://auth.canopy-io.com/api/v1/organizations/value/domains" \ -H "X-API-Key: $CANOPY_API_KEY"
{ "items": [ { "domain": "string", "status": "pending", "txt_record_name": "string", "txt_record_value": "string", "verified_at": "2026-04-20T12:00:00.000Z", "last_checked_at": "2026-04-20T12:00:00.000Z", "failure_reason": "string" } ] }
Tell us how we can improve this guide.