GET
/
v1
/
inquire
/
point-type-choices
curl --request GET \
  --url https://vanilla-dev02-loyalty.fabric.zone/api/v1/inquire/point-type-choices \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "message": "Success",
  "errors": {},
  "data": [
    {
      "pointTypeChoices": [
        {
          "pointTypeId": 1,
          "pointTypeName": "BASE"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
OK

Response of the Get Redeemable Points endpoint

status
integer

Status of the call

message
string
default:
Exception message

Message corresponding to the call

errors
object

Error details, if applicable

data
object[]