clerk.get_sign_up
Retrieve an in-progress sign-up from a connected Clerk application by sign-up 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 status, contact fields, missing and unverified fields, and completion timestamps.
Cost = 3 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sign_up_id | Yes | Clerk sign-up id (su_...) to retrieve. | |
| 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 |
|---|---|---|---|
| id | No | Clerk sign-up id (su_...). | |
| status | No | Sign-up status: "missing_requirements", "complete", or "abandoned". | |
| username | No | Username associated with the in-progress sign-up. | |
| last_name | No | Last name collected during sign-up. | |
| abandon_at | No | Unix timestamp in milliseconds when the sign-up will be abandoned. | |
| first_name | No | First name collected during sign-up. | |
| phone_number | No | Phone number associated with the in-progress sign-up. | |
| email_address | No | Email address associated with the in-progress sign-up. | |
| missing_fields | No | Fields still required before the sign-up can complete. | |
| created_user_id | No | Clerk user id created when the sign-up completed. | |
| unverified_fields | No | Fields that still need verification. | |
| created_session_id | No | Clerk session id created when the sign-up completed. |