Use this API to fetch the order fee to display to customers for payments or to factor into final amount passed to complete a payment.

👍

Good to know

To get the order fee, RSA encryption PKCS#1 v1.5 is used to encrypt the payload.


Sample payload to encrypt

{
    "amount": 100,
    "currency": "USD",
    "paymentoption": "C"
}

Sample payload passed to Get Order Fee API after encryption

{
    "data": "{{encrypteddata}}"
}