cURL
curl --request POST \ --url https://api.example.com/payments \ --header 'Content-Type: application/json' \ --data ' { "metadata": [ { "key": "<string>", "value": "<string>" } ], "amountInEuroCents": 123, "stripeCustomerId": "<string>", "paymentMode": "DIRECT_DEBIT", "paymentMethodId": "<string>" } '
{ "id": "<string>" }
metadata assigned to the object
Show child attributes
the amount to charge in cents of euro
the id of the stripe customer
the payment mode
DIRECT_DEBIT
BANK_TRANSFER
the id of the payment method
the id of the payment
Was this page helpful?