GET
/
customers
/
{id}
/
rewards_profile
curl --request GET \
  --url https://api.pocketflows.com/customers/{id}/rewards_profile \
  --header 'Authorization: Basic <encoded-value>'
{
  "points": 123,
  "customer": "<string>",
  "tier": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the customer

Response

200 - application/json

The rewards profile for the customer

The response is of type object.