GET
/
members
/
{id}
curl --request GET \
  --url https://api.pocketflows.com/members/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "<string>",
  "user": "<string>",
  "rewards_program": "<string>",
  "point_total": 123,
  "point_balance": 123
}

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 member

Response

200 - application/json

The Member object

The response is of type object.