customer

1. Customer Request API Basic Information

Request Method

GET

circle-info

Security Control: Add allocated token verification permission. Token is placed in the Authorization header and permission verification is performed when requesting the endpoint.

Request Parameters

Parameter Name
Description
Example/Default Value

since_id

Initial customer_id, used for pagination, each page queries data with customer_id > since_id and sorts in ascending order

0 (first page)

limit

Page size

100

created_at_min

Minimum time for customer creation time query

2025-09-01 00:00:00

created_at_max

Maximum time for customer creation time query

2025-09-05 23:59:59

updated_at_min

Minimum time for customer update time query

2025-09-01 00:00:00

updated_at_max

Maximum time for customer update time query

2025-09-05 23:59:59

Request Parameter Example:

request.json
{
  "since_id": 0,
  "limit": "100",
  "created_at_min": "2025-09-01 00:00:00",
  "created_at_max": "2025-09-05 23:59:59",
  "updated_at_min": "2025-09-01 00:00:00",
  "updated_at_max": "2025-09-05 23:59:59"
}

Response Result

Status Code Rule: status_code == 200 indicates that the request is successful and data is returned.

Response Result Structure:


2. Customer Basic Structure (customer)


3. Customer Address Structure (address)


4. Customer Sample Data