Trial Eligibility
Retrieves all trial eligibility overrides for the specified customer.
The ID of the store to retrieve trial eligibility overrides for.
411486491630370816
The ID of the customer to retrieve trial eligibility overrides for.
411486491630370816
The maximum number of items to return in a single request.
Returns items after the specified ID. Used for forward pagination through results.
411486491630370816
Returns items before the specified ID. Used for backward pagination through results.
411486491630370816
Determines the sort order of returned items. When true, items are returned in ascending order. When false, items are returned in descending order.
OK
Error response
GET /v1/stores/{storeId}/customers/{customerId}/trial-eligibility/overrides HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "411486491630370816",
"pretty_id": "text",
"store_id": "411486491630370816",
"customer_id": "411486491630370816",
"product_id": "411486491630370816",
"product_name": "text",
"product_image_url": "text",
"created_at": "2025-09-13T13:13:05.296Z",
"created_by": {
"type": "anonymous",
"id": "411486491630370816"
},
"expires_at": "2025-09-13T13:13:05.296Z",
"used_at": "2025-09-13T13:13:05.296Z",
"used_on_trial_id": "411486491630370816",
"note": "text",
"deleted_at": "2025-09-13T13:13:05.296Z",
"deleted_by": {
"type": "anonymous",
"id": "411486491630370816"
}
}
]
Creates a new trial eligibility override for the specified customer.
The ID of the store to create the trial eligibility override for.
411486491630370816
The ID of the customer to create the trial eligibility override for.
411486491630370816
411486491630370816
OK
Error response
POST /v1/stores/{storeId}/customers/{customerId}/trial-eligibility/overrides HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 89
{
"product_id": "411486491630370816",
"expires_at": "2025-09-13T13:13:05.296Z",
"note": "text"
}
{
"id": "411486491630370816",
"pretty_id": "text",
"store_id": "411486491630370816",
"customer_id": "411486491630370816",
"product_id": "411486491630370816",
"product_name": "text",
"product_image_url": "text",
"created_at": "2025-09-13T13:13:05.296Z",
"created_by": {
"type": "anonymous",
"id": "411486491630370816"
},
"expires_at": "2025-09-13T13:13:05.296Z",
"used_at": "2025-09-13T13:13:05.296Z",
"used_on_trial_id": "411486491630370816",
"note": "text",
"deleted_at": "2025-09-13T13:13:05.296Z",
"deleted_by": {
"type": "anonymous",
"id": "411486491630370816"
}
}
Deletes an existing trial eligibility override.
The ID of the store to delete the trial eligibility override for.
411486491630370816
The ID of the trial eligibility override to delete.
411486491630370816
No Content
No content
Error response
DELETE /v1/stores/{storeId}/customers/{customerId}/trial-eligibility/overrides/{trialEligibilityOverrideId} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No content
Was this helpful?