API
Skip to main content

Payment with registered credit/debit card

With a registered payment method it is now possible to immediately request payment.

  1. Obtain UUID of registered payment method;
  2. Payment with sending payment method.

1. Obtain UUID of registered payment method

Obtaining the UUID of the payment method can be done via View payment methods saved by the customer

2. Payment with sending payment method

Make a payment request by sending the UUID of the customer and the UUID of the payment method.

The payment is processed as a card not present (CNP) operation and no further authentication should be requested.

POST /payments

{
"type": "payment",
"amount": 100,
"customer": {
"uuid": "e2343605-cf46-43de-b20b-9b7d1c95a9b2"
},
"paymentMethod": {
"uuid": "90068f83-7623-4de5-91c7-ac447c504ebf"
}
}