(sign_ups)
- update - Update a sign-up
Update the sign-up with the given ID
from clerk_backend_api import Clerk
with Clerk(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as clerk:
res = clerk.sign_ups.update(id="signup_1234567890abcdef", external_id="ext_id_7890abcdef123456")
assert res is not None
# Handle response
print(res)
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
id |
str | ✔️ | The ID of the sign-up to update | signup_1234567890abcdef |
external_id |
OptionalNullable[str] | ➖ | The ID of the guest attempting to sign up as used in your external systems or your previous authentication solution. This will be copied to the resulting user when the sign-up is completed. |
ext_id_7890abcdef123456 |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
Error Type | Status Code | Content Type |
---|---|---|
models.ClerkErrors | 403 | application/json |
models.SDKError | 4XX, 5XX | */* |