wallet
Update Wallet Pin

Update Wallet Pin

This API updates or sets the consumer wallet pin

Request

Endpoint

PATCH https://demo.rewardadz.com/public/api/v1/gateway/wallet_pin

Headers

x-access-token:string
x-consumer-token:string

Body

{
  "pin": "1234"
}

Below are the possible API responses: if wallet is not found

{
  "success": false,
  "ra_message": "Wallet not found",
  "ra_response_data": null
}

otherwise you will get a success response that looks like this:

{
  "success": true,
  "ra_message": "Wallet pin updated successfully",
  "ra_response_data": null
}