Delivery
Retrieves the current customers delivery items.
Authorizations
Query parameters
limitinteger · int32 · min: 1 · max: 100Optional
The maximum number of items to return in a single request.
afterstring · flake-idOptionalExample:
Returns items after the specified ID. Used for forward pagination through results.
411486491630370816beforestring · flake-idOptionalExample:
Returns items before the specified ID. Used for backward pagination through results.
411486491630370816ascbooleanOptional
Determines the sort order of returned items. When true, items are returned in ascending order. When false, items are returned in descending order.
Responses
200
OK
application/json
default
Error response
application/json
get
/v1/store/customer/delivery/itemsGET /v1/store/customer/delivery/items HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "411486491630370816",
"store_id": "411486491630370816",
"customer_id": "411486491630370816",
"order_id": "411486491630370816",
"order_line_id": "411486491630370816",
"subscription_id": "411486491630370816",
"execute_on_gameserver_id": "411486491630370816",
"quantity_index": 1,
"product": {
"id": "411486491630370816",
"name": "Premium Membership",
"slug": "premium-membership",
"version_id": "v2.1.0"
},
"state": "usable",
"expirable": true,
"gift": true,
"added_at": "2025-10-29T11:43:08.431Z",
"active_at": "2025-10-29T11:43:08.431Z",
"expires_at": "2025-10-29T11:43:08.431Z",
"override_expires_at": "2025-10-29T11:43:08.431Z",
"removed_at": "2025-10-29T11:43:08.431Z",
"revoked_at": "2025-10-29T11:43:08.431Z",
"revoke_reason": "text"
}
]Was this helpful?
