Skip to main content
GET
/
ecommerce-widgets
/
{id}
/
orders
List a shop widget's orders
curl --request GET \
  --url https://formitto.com/v1/ecommerce-widgets/{id}/orders \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "customerEmail": "[email protected]",
      "amountCents": 123,
      "currency": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "ecommerceWidgetId": 123,
      "collectionId": 123,
      "customerName": "<string>",
      "customerPhone": "<string>",
      "shippingAddress": {},
      "trackingNumber": "<string>",
      "trackingCarrier": "<string>",
      "shippedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "pages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.formitto.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Formitto API key created in the dashboard (Settings → API keys). Pass it as Authorization: Bearer fmt_live_....

Path Parameters

id
integer
required

The resource id.

Query Parameters

page
integer
default:1

1-based page number.

Required range: x >= 1
limit
integer
default:25

Items per page (max 100).

Required range: 1 <= x <= 100

Response

A page of orders.

data
object[]
required
pagination
object
required