GET /v1/customers/{id}/orders
Scope
read_customers
Request parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | required | ID of the target resource. |
limit | query | integer | optional | How many entries to return (1-100). Defaults to 20. |
offset | query | integer | optional | Zero-based offset to start from. ⚠️ Entries updated mid-scan can be missed. For incremental order fetching, use after_id with updated_since instead. |
Response example
{
"data": [
{
"id": "1001",
"ordered_at": "2026-06-01T03:00:00Z",
"updated_at": "2026-06-01T03:30:00Z",
"status": "init",
"payment_method": "card",
"total": {
"amount": 3200,
"currency": "JPY"
},
"is_subscription": true,
"inflow_route": {
"id": "12",
"code": "gift-quick",
"name": "ギフトクイックURL"
},
"gift_status": "none",
"gift_source_order_id": "1000"
}
],
"pagination": {
"limit": 0,
"offset": 0,
"total": 0
}
}
Description
List a customer's orders (header only)
Error response example
{
"error": {
"code": "insufficient_scope",
"message": "requires scope 'read_customers'",
"request_id": "req_01H..."
}
}
Possible errors: 401 / 403 / 404