Secure Payments API DELETE Customers Card
General
Deleting customer cards is one of the customer options available through the Secure Payments (PCI Wallet) API.
How To
To to remove a customer's card, send a DELETE request to the endpoint: customers/{id}/card
This is an example payload:
curl -X DELETE --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'authorization: YOUR AUTH' --header 'secret: YOUR SECRET' -d '{ \
"credit-card": { \
"token": "CARD TOKEN" \
} \
}' 'https://pciwallet.simnang.com/api/customers/1/card'