GET
/
customers
curl --request GET \
  --url https://services.commercengine.dev/api/v1/x2yh61zw4k/admin/customers \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "success": true,
  "content": {
    "customers": [
      {
        "id": "<string>",
        "first_name": "<string>",
        "last_name": "<string>",
        "full_name": "<string>",
        "profile_image_url": "<string>",
        "country_code": "<string>",
        "phone": "<string>",
        "email": "<string>",
        "is_phone_verified": true,
        "is_email_verified": true,
        "is_whatsapp_verified": "<string>",
        "status": "active",
        "created_at": "2023-11-07T05:31:56Z",
        "modified_at": "2023-11-07T05:31:56Z",
        "last_seen": "2023-11-07T05:31:56Z",
        "business": {
          "id": "<string>",
          "business_type": "<string>",
          "business_name": "<string>",
          "gstin": "<string>"
        },
        "segments": [
          {
            "id": "<string>",
            "segment_name": "<string>"
          }
        ]
      }
    ],
    "pagination": {
      "total_records": 123,
      "total_pages": 123,
      "previous_page": "<any>",
      "limit": 123,
      "next_page": "<any>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
OK
message
string
success
boolean
content
object