clerk.list_organization_domains
List organization domains across a Clerk instance. Optionally filter to one organization via organization_id.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns domain summaries and total_count.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (1–500). | |
| query | No | Search domains by name or organization id. Values starting with org_ match organization id exactly; otherwise performs a case-insensitive partial match on the domain name. | |
| offset | No | Number of results to skip before returning. | |
| verified | No | Filter by verification status: "true" or "false". | |
| enrollment_mode | No | Filter or set enrollment mode: manual_invitation, automatic_invitation, or automatic_suggestion. | |
| organization_id | No | Filter domains to a specific Clerk organization id (org_...). | |
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domains | No | Organization domains returned for the requested page. | |
| total_count | No | Total number of domains matching the filter. |