GET
/
v1
/
inquire
/
all-points-expiry
/
{profileId}
curl --request GET \
  --url https://vanilla-dev02-loyalty.fabric.zone/api/v1/inquire/all-points-expiry/{profileId} \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "message": "Success",
  "errors": {},
  "data": [
    {
      "memberExpirations": [
        {
          "expirationTimestamp": "2020-03-20T23:59:59.000000",
          "pointsExpired": 100
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

profileId
string
required

ProfileId of the member, which is generated in the response of the Enroll Member endpoint - POST /v1/members.

Query Parameters

startTimestampUTC
string

Start date of the date range, in UTC format.

endTimestampUTC
string

End date of the date range, in UTC format.

Response

200
application/json
OK

Response of the All-points Expiry API

status
integer

Status of the call.

message
string
default:
Exception message

Message corresponding to the call

errors
object

Error details, if applicable

data
object[]