v1

latestOpenAPI 3.1.02026-07-241120379.1 KB

Read all scheduled orders

This endpoint is used to fetch all the scheduled orders for all the subscriptions.

get/2023-10/order/schedule/

Query parameters

billingDateStartEpochinteger
billingDateEndEpochinteger
updatedAtStartEpochinteger
updatedAtEndEpochinteger
pageSizeinteger
pageNointeger

Response

200

successboolean
messagestring
codestring

Example response

{
  "success": true,
  "message": "Scheduled orders fetched successfully",
  "data": [
    {
      "id": 198846293,
      "billingDateEpoch": 2060622300,
      "customer": {
        "id": 167696885,
        "shopifyId": 7947677073585
      },
      "subscription": {
        "id": 21310687,
        "shopifyId": 16558686385
      },
      "status": "UNPROCESSED",
      "updatedAt": "2026-04-18T19:09:46.000Z"
    }
  ],
  "code": "SUCCESS",
  "pageInfo": {
    "hasNextPage": true
  }
}