A customer along with additional state information:
- Active subscriptions
- Active benefits
import { CustomerState } from "@polar-sh/sdk/models/components/customerstate.js";
let value: CustomerState = {
id: "992fae2a-2a17-4b7a-8d9e-e287cf90131b",
createdAt: new Date("2023-10-30T20:46:20.876Z"),
modifiedAt: new Date("2024-02-09T23:56:49.919Z"),
metadata: {
"key": 560451,
},
externalId: "usr_1337",
email: "[email protected]",
emailVerified: true,
name: "John Doe",
billingAddress: {
country: "FR",
},
taxId: [
"911144442",
"us_ein",
],
organizationId: "1dbfc517-0bbf-4301-9ba8-555ca42b9737",
deletedAt: new Date("2023-01-22T07:56:26.664Z"),
activeSubscriptions: [
{
id: "e5149aae-e521-42b9-b24c-abb3d71eea2e",
createdAt: new Date("2024-03-13T13:08:44.087Z"),
modifiedAt: new Date("2023-12-05T03:31:10.013Z"),
metadata: {
"key": false,
},
amount: 1000,
currency: "usd",
recurringInterval: "year",
currentPeriodStart: new Date("2025-02-03T13:37:00Z"),
currentPeriodEnd: new Date("2025-03-03T13:37:00Z"),
cancelAtPeriodEnd: false,
canceledAt: null,
startedAt: new Date("2025-01-03T13:37:00Z"),
endsAt: null,
productId: "d8dd2de1-21b7-4a41-8bc3-ce909c0cfe23",
discountId: null,
priceId: "196ca717-4d84-4d28-a1b8-777255797dbc",
},
],
grantedBenefits: [
{
id: "d322132c-a9d0-4e0d-b8d3-d81ad021a3a9",
createdAt: new Date("2025-07-31T21:36:43.500Z"),
modifiedAt: new Date("2024-12-16T16:30:20.563Z"),
grantedAt: new Date("2025-01-03T13:37:00Z"),
benefitId: "397a17aa-15cf-4cb4-9333-18040203cf98",
benefitType: "github_repository",
properties: {},
},
],
avatarUrl: "https://www.gravatar.com/avatar/xxx?d=blank",
};
Field | Type | Required | Description | Example |
---|---|---|---|---|
id |
string | ✔️ | The ID of the customer. | 992fae2a-2a17-4b7a-8d9e-e287cf90131b |
createdAt |
Date | ✔️ | Creation timestamp of the object. | |
modifiedAt |
Date | ✔️ | Last modification timestamp of the object. | |
metadata |
Record<string, components.CustomerStateMetadata> | ✔️ | N/A | |
externalId |
string | ✔️ | The ID of the customer in your system. This must be unique within the organization. Once set, it can't be updated. | usr_1337 |
email |
string | ✔️ | The email address of the customer. This must be unique within the organization. | [email protected] |
emailVerified |
boolean | ✔️ | Whether the customer email address is verified. The address is automatically verified when the customer accesses the customer portal using their email address. | true |
name |
string | ✔️ | The name of the customer. | John Doe |
billingAddress |
components.Address | ✔️ | N/A | |
taxId |
components.CustomerStateTaxId[] | ✔️ | N/A | [ "911144442", "us_ein" ] |
organizationId |
string | ✔️ | The ID of the organization owning the customer. | 1dbfc517-0bbf-4301-9ba8-555ca42b9737 |
deletedAt |
Date | ✔️ | Timestamp for when the customer was soft deleted. | |
activeSubscriptions |
components.CustomerStateSubscription[] | ✔️ | The customer's active subscriptions. | |
grantedBenefits |
components.CustomerStateBenefitGrant[] | ✔️ | The customer's active benefit grants. | |
avatarUrl |
string | ✔️ | N/A | https://www.gravatar.com/avatar/xxx?d=blank |