Returns a paginated list of customers who have subscription contracts. Supports filtering by customer name, email, and subscription count.
curl --request GET \
--url https://subscription-admin.appstle.com/api/external/v2/subscription-contract-details/customers \
--header 'X-API-Key: <x-api-key>'[
{
"customerId": 123,
"name": "<string>",
"email": "<string>",
"activeSubscriptions": 123,
"nextOrderDate": "2023-11-07T05:31:56Z",
"inActiveSubscriptions": 123,
"lifetimeValue": 123
}
]Documentation Index
Fetch the complete documentation index at: https://developers.appstle.com/llms.txt
Use this file to discover all available pages before exploring further.
API Key for authentication
API Key (Deprecated - Use X-API-Key header instead)
Filter customers by name (partial match supported)
Filter customers by exact email address
When true, returns only customers who have more than one active subscription
Pagination parameters (page number and size)
Show child attributes
curl --request GET \
--url https://subscription-admin.appstle.com/api/external/v2/subscription-contract-details/customers \
--header 'X-API-Key: <x-api-key>'[
{
"customerId": 123,
"name": "<string>",
"email": "<string>",
"activeSubscriptions": 123,
"nextOrderDate": "2023-11-07T05:31:56Z",
"inActiveSubscriptions": 123,
"lifetimeValue": 123
}
]