Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.52 KB

File metadata and controls

44 lines (28 loc) · 1.52 KB

TestingTokens

(testing_tokens)

Overview

Available Operations

  • create - Retrieve a new testing token

create

Retrieve a new testing token. Only available for development instances.

Example Usage

from clerk_backend_api import Clerk

with Clerk(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as s:
    res = s.testing_tokens.create()

    if res is not None:
        # handle response
        pass

Parameters

Parameter Type Required Description
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.TestingToken

Errors

Error Type Status Code Content Type
models.SDKError 4XX, 5XX */*