Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 2 KB

README.md

File metadata and controls

48 lines (31 loc) · 2 KB

CustomerSessions

(customer_sessions)

Overview

Available Operations

  • create - Create Customer Session

create

Create a customer session.

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.CustomerSessionCreate ✔️ 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 */*