Get Cards
Use this endpoint when building a wallet interface where the user needs to view all their existing cards.
--header 'Accept: application/json'
--header 'Authorization: Bearer {{ access_token }}'{
"success": true,
"message": "All cards successfully fetched",
"status_code": 200,
"data": {
"card_id": {{ card_id }},
"maskedPan": {{ maskedPan }},
"last4": {{ last4 }},
"name": {{ name }},
"brand": {{ brand }},
"currency": {{ currency }},
"status": {{ status }},
}
Last updated