clerk.create_user
Create a user in a connected Clerk application.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Cost = 10 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| password | No | Optional password. Omit to create a user without a password. | |
| last_name | No | Optional last name. | |
| first_name | No | Optional first name. | |
| email_address | Yes | Primary email address for the new Clerk user. | |
| 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 |
|---|---|---|---|
| user | No | Created Clerk user object from the Backend API. |