Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Panel
bgColor#79E2F2

Title: Get All Currencies A Merchant can send transfer in and also all currencies a Beneficiary can receive in

Panel
bgColor#79E2F2#F4F5F7

Description: This endpoint helps to determine Consolidation of distinct currencies where transfer can be initiated from (Sender’s Currency) or to (Beneficiary’s Currency)

Panel
bgColor#79E2F2#F4F5F7

URL: Public/Payout/Currencies/

Panel
bgColor#79E2F2#F4F5F7

HTTP Method: GET

Panel
bgColor#79E2F2#F4F5F7

Headers: authorization Set value to Bearer SECRET_KEY

string

 

Panel
bgColor#FFC400

Sample Response Body Response code : 200

Code Block
languagejs
{
  "value": {
    "beneficiary": [
      "EUR",
      "GBP",
      "USD",
      "NGN"
    ],
    "merchant": [
      "USD",
      "NGN",
      "GBP",
      "EUR"
    ]
  },
  "isSuccess": true,
  "error": "",
  "message": "",
  "responseCode": null,
  "type": null,
  "title": null,
  "status": 200,
  "detail": null,
  "instance": null,
  "extensions": {}
}

...