Skip to main content
GET
/
shops
/
{shopId}
/
orders
List orders
curl --request GET \
  --url https://api.quivo.co/shops/{shopId}/orders
{
  "orders": [
    {
      "orderIdentifier": "<string>",
      "orderReference": "<string>",
      "orderStatus": "PENDING",
      "orderStatusIdentifier": "<string>",
      "orderStatusName": "<string>",
      "orderDate": "2023-11-07T05:31:56Z",
      "currency": {
        "currencyCode": "<string>",
        "defaultFractionDigits": 123,
        "numericCode": 123,
        "displayName": "<string>",
        "symbol": "<string>",
        "numericCodeAsString": "<string>"
      },
      "deliveryAddress": {
        "name1": "<string>",
        "name2": "<string>",
        "company": "<string>",
        "address1": "<string>",
        "address2": "<string>",
        "address3": "<string>",
        "zip": "<string>",
        "city": "<string>",
        "state": "<string>",
        "country": "<string>",
        "phone": "<string>",
        "email": "<string>"
      },
      "invoiceAddress": {
        "name1": "<string>",
        "name2": "<string>",
        "company": "<string>",
        "address1": "<string>",
        "address2": "<string>",
        "address3": "<string>",
        "zip": "<string>",
        "city": "<string>",
        "state": "<string>",
        "country": "<string>",
        "phone": "<string>",
        "email": "<string>"
      },
      "positions": [
        {
          "positionIdentifier": "<string>",
          "productIdentifier": "<string>",
          "variantIdentifier": "<string>",
          "name": "<string>",
          "sku": "<string>",
          "quantity": 123,
          "unitWeight": 123,
          "unitNetPrice": 123,
          "unitGrossPrice": 123
        }
      ]
    }
  ],
  "nextPageToken": "<string>"
}

Path Parameters

shopId
integer<int64>
required

The unique identifier for a connected shop or integration.

Query Parameters

pageToken
string

Specifies which page to load. If not specified, the first page is loaded.

Response

Returns the ShopOrdersGetResult matching the specified identifier.

Shop orders information. Contains list of orders imported from a specific shop with pagination.

orders
object[]

Order identifier or information

nextPageToken
string

Use this token to load the next page. A value of null indicates that there is no next page.