v1
latestOpenAPI 3.0.32026-07-248079274.0 KBCards
Create customer card
Store a card against a customer for use in later stored-card payments. If the customer already has an active card with the same holder name and card number, the existing card is returned with any updates from your request.
post/customers/{customer_id}/cards
Path parameters
customer_idstring uuid required
Unique ID assigned by Acquired.com for the customer.
Request body
Example request
{
"holder_name": "E Johnson",
"scheme": "visa",
"number": "4000011180138710",
"expiry_month": 10,
"expiry_year": 30,
"cvv": "123",
"scheme_reference_data": "123456789012345",
"source": "card"
}Response
OK - the customer already has a card with the same holder name and card number. The existing card_id is returned and any new details from your request are saved to the stored card.
Example response
{
"card_id": "a7e3fde5-5b83-44f4-9915-782bc7121717"
}