GET
/
v1
/
inquire
/
points-expiry
curl --request GET \
  --url https://vanilla-dev02-loyalty.fabric.zone/api/v1/inquire/points-expiry \
  --header 'Authorization: Bearer <token>'
{
  "message": "Success",
  "data": [
    {
      "expiryDuration": 30,
      "unRestrictedTotalPoints": 100,
      "restrictedTotalPoints": 12,
      "totalPoints": 112,
      "pointValue": 112,
      "restrictedPoints": [
        {
          "points": 12,
          "restrictedLocation": "demo_store"
        }
      ],
      "expiryDate": "2020-03-20T01:30:08.180856"
    }
  ],
  "status": 200,
  "errors": {}
}

Authorizations

Authorization
string
header
required

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

Query Parameters

profileId
integer

Profile ID. It is generated in the response of the Enroll Member endpoint - POST /v1/members.

Response

200
application/json
OK
message
string | null

Message corresponding to the call.

Maximum length: 200
data
object[]
status
integer

Status of the call

errors
object

Error details, if any