Attach a reusable payment method to a customer
curl --request POST \
--url https://merchant-demo.zahlo.eu/api/v1/customers/{id}/payment-methods \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"clientToken": "client_token_from_your_server"
}
'import requests
url = "https://merchant-demo.zahlo.eu/api/v1/customers/{id}/payment-methods"
payload = { "clientToken": "client_token_from_your_server" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({clientToken: 'client_token_from_your_server'})
};
fetch('https://merchant-demo.zahlo.eu/api/v1/customers/{id}/payment-methods', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "pm_demo_1001",
"type": "card",
"reusable": true,
"customerId": "cus_demo_1001",
"billingDetails": {
"country": "DE"
}
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}Customers
Attach a reusable payment method to a customer
Attach a reusable payment method to a customer. Use the response status and request ID to decide whether to retry, reconcile, or ask the customer for action.
POST
/
api
/
v1
/
customers
/
{id}
/
payment-methods
Attach a reusable payment method to a customer
curl --request POST \
--url https://merchant-demo.zahlo.eu/api/v1/customers/{id}/payment-methods \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"clientToken": "client_token_from_your_server"
}
'import requests
url = "https://merchant-demo.zahlo.eu/api/v1/customers/{id}/payment-methods"
payload = { "clientToken": "client_token_from_your_server" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({clientToken: 'client_token_from_your_server'})
};
fetch('https://merchant-demo.zahlo.eu/api/v1/customers/{id}/payment-methods', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "pm_demo_1001",
"type": "card",
"reusable": true,
"customerId": "cus_demo_1001",
"billingDetails": {
"country": "DE"
}
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}{
"error": "invalid_request",
"message": "amountMinor must be positive",
"requestId": "req_demo_1001"
}Authorizations
Server-side merchant API key. Never expose it in browser code.
Headers
Retry-safe key for create operations.
Path Parameters
The resource identifier returned by the merchant API.
Body
application/json