Get List Payout Method

View as Markdown
## Get Payout Methods 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. ### Request **HTTP Method:** GET **Endpoint:** `{{url}}/api/v1/payout-method` ### Query Parameters - **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. ### Response **Status Code:** 200 **Content-Type:** application/json #### Response Body 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. ### Example Response ``` json { "data": [ { "id": 0, "pspId": "", "country": "", "currency": "", "paymentType": "", "manisPaymentMethodName": "" } ], "currentPage": 0, "totalItem": 0, "totalPage": 0 } ``` 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.

Query parameters

pspIdstringOptional
countrystringOptional
currencystringOptional
pagestringOptional
pageSizestringOptional

Response headers

Pragmastring
Expiresstring
Cache-Controlstring
X-Frame-Optionsstring
X-XSS-Protectionstring
X-Content-Type-Optionsstring

Response

OK
datalist of objects
totalIteminteger
totalPageinteger
currentPageinteger