Get Solution List
Retrieve active payout solutions for your merchant account.
Endpoint Information
Name: Get Solution List by Merchant Account ID
Method: GET
URL: {{base_url}}/api/v1/merchant/active/solutions?payout_type=bankPayout&merchantAccountId={{your_account_no}}
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 | No | bankPayout (default) or cardPayout |
Response
Success Response
{
"success": true,
"message": "Success",
"data": [
{
"id": "269b8d4a-151e-4f17-b3f0-050277618ac2", // this Solution ID is required in other requests
"name": "Trust Payments",
"logo": "https://centralisera-staging.s3.amazonaws.com/solution/logo/63d134c84edb5490.jpg",
"supported_currencies": [
"USD",
"EURO"
],
"regions": [
"Africa"
],
"dynamic_currency_supported": 1
}
]
}