Payout Solution List
Get a list of available payout solutions.
Endpoint Information
Name: Get Solution List by Merchant Account ID
Method: GET
URL: {{base_url}}/api/v1/merchant/active/solutions
Description
Retrieve a list of active solutions capable of handling payouts. You need the id from this list to process payouts.
Authentication
Type: Basic Auth
- Username: App Key
- Password: Secret Key
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
merchantAccountId | string | Yes | Your merchant account ID |
payout_type | string | Yes | bankPayout or cardPayout |
Response
Success Response
{
"success": true,
"message": "Success",
"data": [
{
"id": "269b8d4a-151e-4f17-b3f0-050277618ac2",
"name": "Trust Payments",
"supported_currencies": [
"USD",
"EURO"
],
"dynamic_currency_supported": 1
// ...other fields
}
]
}
Usage
Use the returned id as the solutionId in Card Payout or Bank Payout requests.