Secure Payments API DELETE Customers Checking Account
General
Deleting customer checking accounts is one of the customer options available through the Secure Payments (formerly PCI Wallet) API.
How To
To delete a customer's checking account, send a DELETE request to the endpoint: customers/{id}/checking-account
Example payload to delete the customer from a checking-account:
curl -X DELETE --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'authorization: YOUR AUTH' --header 'secret: YOUR SECRET' -d '{ \
"checking-account": { \
"token": "CHECKING TOKEN" \
} \
}' 'https://pciwallet.simnang.com/api/customers/34/checking-account'