Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 2.99 KB

File metadata and controls

55 lines (35 loc) · 2.99 KB

CustomerSessions

(customer_sessions)

Overview

Available Operations

  • create - Create Customer Session

create

Create a customer session.

For organizations with member_model_enabled, this will automatically create a member session for the owner member of the customer.

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={
        "external_customer_id": "<id>",
    })

    # 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 */*