Skip to main content
GET
/
orders
/
{id}
Get an order
curl --request GET \
  --url https://formitto.com/v1/orders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

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.

Response

The order.

id
integer
required
customerEmail
string<email>
required
amountCents
integer
required
currency
string
required
status
enum<string>
required
Available options:
paid,
shipped,
refunded,
failed
createdAt
string<date-time>
required
ecommerceWidgetId
integer | null
collectionId
integer | null
customerName
string | null
customerPhone
string | null
shippingAddress
object
trackingNumber
string | null
trackingCarrier
string | null
shippedAt
string<date-time> | null