Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 2.73 KB

README.md

File metadata and controls

51 lines (32 loc) · 2.73 KB

CustomerSessions

(customer_sessions)

Overview

Available Operations

  • create - Create Customer Session

create

Create a customer session.

Scopes: customer_sessions:write

Example Usage

from polar_sdk import Polar


with Polar(
    access_token="<YOUR_BEARER_TOKEN_HERE>",
) as polar:

    res = polar.customer_sessions.create(request={
        "customer_id": "<value>",
    })

    # Handle response
    print(res)

Parameters

Parameter Type Required Description
request models.CustomerSessionsCreateCustomerSessionCreate ✔️ The request object to use for the request.
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.CustomerSession

Errors

Error Type Status Code Content Type
models.HTTPValidationError 422 application/json
models.SDKError 4XX, 5XX */*