v1

latestOpenAPI 3.0.1Apache 2.02026-07-248286406.8 KB
Payout Catalog

Returns provided service

This GET endpoint is used to retrieve the details of the provided service. <br> To use this endpoint, you need to provide the destination_token as a required parameter in the URL Path. <br> The response will include a JSON object containing details for the company, including the company name, and pricing.

get/payout/service/{destination_token}

Path parameters

destination_tokenstring required

Destination token

Query parameters

include_payer_logosboolean

Whether to include the payers logo in base64 format.

amountnumber float

Returns the results fee based on the given amount, defaults to $200

destination_currencystring
Example:EUR

Filter services that support the destination currency

source_currencystring
Example:USD

Optional. If provided, the source currency must match one of the currencies associated with the client’s issued clnt_wlt wallets. If not specified, the system will automatically select one of the eligible wallet source currencies.

Headers

Idempotency-Keystring

Unique key to prevent duplicate processing

Response

Successful operation.

country_codestring required

Country code ISO_3166

delivery_type'CASH_PICKUP' | 'BANK_DEPOSIT' | 'HOME_DELIVERY' | 'MOBILE_WALLET' | 'MASSPAY_CARD' | 'PAPER_CHECK' | 'BILL' | 'CRYPTOCURRENCY' required

The type of service. I.e. cash pickup, home delivery, etc.

Example response

{
  "country_code": "MEX",
  "payers": [
    {
      "destination_token": "123e4567-e89b-12d3-a456-426614174000",
      "payer_logo": "U3dhZ2dlciByb2Nrcw==",
      "payer_name": "Elektra",
      "exchange_rate": [
        {
          "currency_symbol": "MXN",
          "exchange_rate": 18.37
        }
      ],
      "fee": 8,
      "max_limit": 10000,
      "source_amount": 104.3,
      "number_of_locations": 13007,
      "estimated_availability": "2020-07-21T17:32:28Z",
      "additional_description": "Requires drivers license to pickup funds"
    }
  ]
}