v1

latestOpenAPI 3.1.02026-07-241120379.1 KB

Read all past orders

This endpoint allows you to retrieves a list of subscription orders for all the subscriptions.

get/2023-10/order

Query parameters

pageNointeger
pageSizeinteger
shopifyCreatedAtStartEpochinteger

Start date epoch for filter based on order shopifyCreatedAt date.

shopifyCreatedAtEndEpochinteger

End date epoch for filter based on order shopifyCreatedAt date.

updatedAtStartEpochinteger

Start date epoch for filter based on order updationAt date

updatedAtEndEpochinteger

End date epoch for filter based on order updationAt date

Response

200

successboolean
messagestring
codestring

Example response

{
  "success": true,
  "message": "Orders fetched successfully",
  "data": [
    {
      "id": 197361166,
      "shopifyId": 6587424342193,
      "status": "PROCESSED",
      "billingDateEpoch": 1782813436,
      "financialStatus": "authorized",
      "shopifyCreatedAt": "2026-06-30T09:45:20.000Z",
      "shopifyProcessedAt": "2026-06-30T09:45:16.000Z",
      "shopifyUpdatedAt": "2026-06-30T09:45:32.000Z",
      "currencyCode": "USD",
      "totalPriceUsd": "126.00",
      "totalDiscount": "590.00",
      "totalLineItemsPrice": "716.00",
      "totalShippingPrice": "0.00",
      "shopifyOrderNumber": 1350,
      "totalPrice": "126.00",
      "totalTax": "0.00",
      "shippingAddress": {
        "firstName": "Pranjal",
        "lastName": "Naithani",
        "address1": "11",
        "city": "New York",
        "zip": "10004",
        "provinceCode": "NY",
        "countryCode": "US"
      },
      "customer": {
        "id": 339511926,
        "shopifyId": 8764091957425
      },
      "subscription": {
        "id": 21178930,
        "shopifyId": 16524247217
      },
      "lines": [
        {
          "productShopifyId": 8963869999281,
          "variantShopifyId": 46647741579441,
          "productTitle": "Monthly Box (Feb)",
          "variantTitle": "Red / Small / Wood",
          "name": "Monthly Box (Feb) - Red / Small / Wood",
          "quantity": 1,
          "price": 76,
          "currentQuantity": 1
        }
      ],
      "updatedAt": "2026-06-30T09:46:04.000Z",
      "orderType": "RECURRING"
    }
  ],
  "code": "SUCCESS",
  "pageInfo": {
    "hasNextPage": true
  }
}