Payout Provider

Retrieve a list of supported payout service providers.

This endpoint returns the list of available banks and financial institutions that support payouts. Each provider includes the payout_provider_id and name.

Use this endpoint to populate bank selection dropdowns or validate availability before initiating a payout.

Endpoint

POST

Usage Examples

curl -X POST "https://api.payright.my/api/v1/merchant/list-payout-providers" \
  -H "auth-token: eyJhbGciO...XZI3CLi_a0BeUOJMPUK00"

Authentication

string header required

To authenticate requests, include an Authorization header with the value

Key
Value

auth-token

<Your Payright auth token>

circle-info

You can retrieve your token by visiting your Payright dashboardarrow-up-right and clicking Accounts > API Keys > View API Keys (magnify icon) > Auth Token

Response

application/json

Response Attributes

chevron-rightstatus string hashtag

Response status indicator (e.g., "ok" or "fail").

chevron-rightcode numberhashtag

HTTP-like status code representing result (200 = success).

chevron-rightdata object | nullhashtag
chevron-rightdata.list object hashtag
Field
Type
Description

draw

number

A sequence or page counter, typically used for paginated requests.

record_filtered

number

Total number of records matching current filters.

record_total

number

Total number of records available overall.

chevron-rightdata.list.data array hashtag
Field
Type
Description

payout_provider_id

number

Internal identifier for the payout provider.

name

string

Display name of the provider (e.g., bank name).

chevron-rightuuid string | null hashtag

Unique request identifier useful for debugging or tracing logs.

chevron-rightmessage string | null hashtag

Optional human-readable message (e.g., for error or info).

chevron-righterror string | null hashtag

Optional error description if something went wrong.

Last updated