Skip to main content
Version: 1.0.0

Importapay Merchant API

Merchant collections, dynamic virtual accounts, payouts, and vault operations.

Authentication

Security Scheme Type:apiKey
Header parameter name:x-api-key

Example request

Create a payment intent from your server by sending your Merchant API key in the x-api-key header. Keep this key out of browser code and source control.

curl -X POST "https://api.importa.example/api/merchant/payment-intents" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_MERCHANT_API_KEY" \
-d '{
"merchantReference": "INV-3021",
"amount": 85000,
"expectedSenderBankName": "PALMPAY",
"expectedSenderAccountNumber": "8889227300"
}'