Skip to main content
This endpoint allows a user to calculate payment charges associated with different payment methods. It supports scenarios including:
  • Customer transactions (subAction = "transaction")
  • Money transfers (subAction = "transfer")
Charges are determined based on:
  • Selected payment method
  • Amount and currency
  • Organisation and customer country

Authentication

string
required
Authentication token obtained after login.
string
required
Device UUID used for request tracking.
string
required
Platform identifier (e.g., “WEB”, “ANDROID”, “IOS”).

Request Body

string
Payment code number. Required if subAction = "transaction".
string
required
Action type. Accepted values:
  • "transaction"
  • "transfer"
string
required
Selected payment method. Must match PaymentMethod enum, e.g., "ONLINE_CARD_PAYMENT", "BANK_TRANSFER".
string
Currency code for the transfer (required if subAction = "transfer").
string
Amount for the transfer (required if subAction = "transfer").

Code Examples

Use Cases

1. Retrieve Charges for a Transfer

2. Retrieve Charges for a Transaction