Get Card by Recipient ID
Endpoint: https://rest.virtualincentives.com/{version}/{format}/recipients/{id}/card
Method: GET
This endpoint requires approval prior to access. Please contact your Virtual Incentives Client Success Manager to discuss your use case.
Definitions
Field | Type | Description |
---|---|---|
pan | response only string | 16 digit card number |
expiration | response only string | Card expiration Format: MM/yy |
cvv | response only string | Card verification value |
Examples
Response XML
<card>
<pan>1111222233334444</pan>
<expiration>0421</expiration>
<cvv>123</cvv>
</card>
Response JSON
{
"card": {
"pan": "1111222233334444",
"expiration": "0421",
"cvv": "123"
}
}
Updated about 2 years ago