ExperimentalAccountlessApplications
(experimental_accountless_applications )
create - Create an accountless application [EXPERIMENTAL]
complete - Complete an accountless application [EXPERIMENTAL]
Creates a new accountless application. [EXPERIMENTAL]
from clerk_backend_api import Clerk
with Clerk (
bearer_auth = "<YOUR_BEARER_TOKEN_HERE>" ,
) as clerk :
res = clerk .experimental_accountless_applications .create ()
assert res is not None
# Handle response
print (res )
Parameter
Type
Required
Description
retries
Optional[utils.RetryConfig]
➖
Configuration to override the default retry behavior of the client.
models.AccountlessApplication
Error Type
Status Code
Content Type
models.ClerkErrors
500
application/json
models.SDKError
4XX, 5XX
*/*
Completes an accountless application. [EXPERIMENTAL]
from clerk_backend_api import Clerk
with Clerk (
bearer_auth = "<YOUR_BEARER_TOKEN_HERE>" ,
) as clerk :
res = clerk .experimental_accountless_applications .complete ()
assert res is not None
# Handle response
print (res )
Parameter
Type
Required
Description
retries
Optional[utils.RetryConfig]
➖
Configuration to override the default retry behavior of the client.
models.AccountlessApplication
Error Type
Status Code
Content Type
models.ClerkErrors
500
application/json
models.SDKError
4XX, 5XX
*/*