Skip to main content

GET /v1/customers/{id}/orders

Scope

read_customers

Request parameters

NameInTypeRequiredDescription
idpathintegeroptional
limitqueryintegeroptional
offsetqueryintegeroptional

Response example

{
"data": [
{
"id": "1001",
"ordered_at": "2026-06-01T12:00:00+09:00",
"status": "init",
"payment_method": "card",
"total": {
"amount": 3200,
"currency": "JPY"
},
"is_subscription": true
}
],
"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_orders'",
"request_id": "req_01H..."
}
}

Possible errors: 401 / 403 / 404