clerk.list_user_organization_memberships
List all organizations a specific Clerk user belongs to.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns membership id, organization_id, role, and timestamps.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of organization memberships to return (1–500). | |
| offset | No | Number of organization memberships to skip before returning results. | |
| user_id | Yes | Clerk user id (user_...) whose memberships to list. | |
| 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 |
|---|---|---|---|
| memberships | No | Organization memberships for the user. | |
| total_count | No | Total number of organization memberships for the user. |