GET /v1/customers
Scope
read_customers
Request parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
limit | query | integer | optional | |
offset | query | integer | optional |
Response example
{
"data": [
{
"id": "42",
"line_uid": "string",
"name": "山田太郎",
"avatar_url": "string",
"is_blocked": true
}
],
"pagination": {
"limit": 0,
"offset": 0,
"total": 0
}
}
Description
List customers (LINE identity; classic PII excluded)
Error response example
{
"error": {
"code": "insufficient_scope",
"message": "requires scope 'read_orders'",
"request_id": "req_01H..."
}
}
Possible errors: 401 / 403