Get organization JIT email domains

GET /api/organizations/{id}/jit/email-domains

Get email domains for just-in-time provisioning of users in the organization.

Path parameters

  • id string Required

    The unique identifier of the organization.

Query parameters

  • page integer

    Page number (starts from 1).

    Minimum value is 1. Default value is 1.

  • page_size integer

    Entries per page.

    Minimum value is 1. Default value is 20.

Responses

  • 200 application/json

    A list of email domains.

    Hide response attributes Show response attributes object
  • Bad Request

  • Unauthorized

  • Forbidden

GET /api/organizations/{id}/jit/email-domains
curl \
 -X GET https://[tenant_id].logto.app/api/organizations/{id}/jit/email-domains \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "tenantId": "string",
    "organizationId": "string",
    "emailDomain": "string"
  }
]