This endpoint retrieves a list of payout methods based on the specified parameters. It allows users to filter the payout methods by payment service provider (PSP), country, and currency, as well as paginate the results.
HTTP Method: GET
Endpoint: {{url}}/api/v1/payout-method
pspId (string): The ID of the payment service provider.
country (string): The country code for which the payout methods are being requested.
currency (string): The currency code relevant to the payout methods.
page (integer): The page number for pagination.
pageSize (integer): The number of items per page.
Status Code: 200
Content-Type: application/json
The response will contain the following fields:
data (array): A list of payout methods. Each object in the array includes:
id (string): The unique identifier for the payout method.
pspId(string): ID of the PSP.
country (string): The country associated with the payout method.
currency (string): The currency associated with the payout method.
paymentType (string): The type of the payout method.
manisPaymentMethodName: The name of the manis payout method.
currentPage (integer): The current page number of the results.
totalItem (integer): The total number of items available across all pages.
totalPage (integer): The total number of pages available based on the pagination.
Use this endpoint to effectively retrieve and manage payout methods based on your specified criteria.
This endpoint allows you to retrieve a list of available payout methods from the API. It supports pagination, enabling you to specify the number of items per page and the page number to fetch.