CustomerSessions
January 20, 2026 ยท View on GitHub
(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 | :heavy_check_mark: | The request object to use for the request. |
retries | Optional[utils.RetryConfig] | :heavy_minus_sign: | Configuration to override the default retry behavior of the client. |
Response
Errors
| Error Type | Status Code | Content Type |
|---|---|---|
| models.HTTPValidationError | 422 | application/json |
| models.SDKError | 4XX, 5XX | */* |