Number of APIs: 4
GET {{url}}customers/:customer_id/cards
Retrieve a list of all cards belonging to a customer. All cards are associated to the customer_id
.
GET {{url}}cards
Returns a list of all cards. Cards are returned by creation date, with the most recently created customers showing first.
GET {{url}}cards/:card_id
Retrieve all the details of a specified card, by appending the relating card_id
to the URL.
PUT {{url}}cards/:card_id
This allows you to update specific details about a card, such as expiry date or cardholder name, without having to re-enter and update all the card details. Just pass the updated parameters in your request, any parameters not returned will be left unchanged.