Update Card PIN

Endpoint: https://rest.virtualincentives.com/{version}/{format}/recipients/{id}/card/pin

Method: POST

Definitions

FieldTypeDescription
pinrequired
integer
4-digit personal identification number assigned to the card to verify point-of-sale Debit transactions.

Examples

Request XML

<recipient>
   <pin>1597</pin>
</recipient>

Request JSON

{
  "recipient": {
   "pin":"1597"
  }
}

Response XML

<recipient>
   <pin>1597</pin>
</recipient>

Response JSON

{
  "recipient": {
    "pin":"1597"
  }
}