Create Bank Payment Intent

Create a payment intent for processing bank transfer payments.

Endpoint

POST /api/payment-intents/bank

Request Body

ParameterTypeRequiredDescription
amountnumberYesPayment amount
currencystringYesFiat currency (USD, EUR, etc.)
customer_idstringNoCustomer identifier
descriptionstringNoPayment description

Response

Returns the created payment intent object.
{
  "id": "pi_bank_123456789",
  "amount": 100.00,
  "currency": "USD",
  "status": "requires_payment_method",
  "customer_id": "cust_123456789",
  "description": "Bank transfer payment",
  "created_at": "2023-01-01T00:00:00Z"
}