Skip to main content
GET
/
customer
/
info
Get Customer Info
curl --request GET \
  --url https://api.example.com/customer/info
Returns the full profile of the authenticated customer, including account details and associated retailer.

Authentication

Requires a valid Customer JWT in the Authorization header.

Response

{
  "id": "uuid",
  "email": "customer@example.com",
  "firstName": "Jane",
  "lastName": "Doe",
  "retailerId": "uuid",
  "createdAt": "2024-01-15T10:00:00Z",
  "updatedAt": "2024-03-01T14:30:00Z"
}