๐Ÿ’ฐH2H Deposit/Payin

The h2h payin operation involves depositing funds into an account from cards via API.

Supported H2H Payin Methods

  • Card Deposit funds from a credit or debit card.

Payin Flow

  1. Initiate Payin: Submit a deposit requestarrow-up-right with the chosen method.

  2. Validation: The system verifies the provided payment details (card number or wallet address).

  3. Pass Card Data: Collect and pass customer card dataarrow-up-right

  4. Processing: The deposit is processed and credited to the user's account.

  5. Notification: If webhook settings specified, webhook is sent for each status transition. Webhook body represents payment modelarrow-up-right. Please refer to webhook section to get more details.

If no webhook settings specified, you can retrieve payment status via GET endpointarrow-up-right

Example API Request. Create h2h payin (See the API reference for more examples)

{
    "amount": 100,
    "clientOrderId": "1234567890",
    "currency": "EUR",
    "method": "CC_VISAMC",
    "comment": "any comment",
    "returnUrl": "https://example.com/"
}

Example API Response. Create h2h payin

Example API Request. Pass card data (See the API reference for more examples)

Example API Response. Pass card data

Last updated