Solution Groups List
Get a list of all active payment solution groups for your merchant account.
Endpoint Information
Name: Get Active Payment Solution Groups
Method: GET
URL: {{BASE_URL}}/api/v1/merchant/active/solution-groups?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 |
Example Request
GET {{BASE_URL}}/api/v1/merchant/active/solution-groups?merchantAccountId=100001
Response
Success Response
{
"success": true,
"message": "Merchant Solution Groups List",
"data": [
{
"id": "43ef5004-e4fd-4033-8ebd-d96f3d2f635a",
"name": "General Group",
"logo": "https://centralisera-staging.s3.amazonaws.com/solution-groups/images/eHaDaILd2trXceSu0lSFhXfYhbWk55KbJwYvAcvs.png",
"type": "APM Group",
"payment_type": "APM Group",
"supported_currencies": [
"USD",
"INR"
],
"regions": [],
"dynamic_currency_supported": 0
},
{
"id": "e85c5d9c-84cc-11f0-9736-fc54af722c86",
"name": "VIP Group",
"logo": "https://centralisera-staging.s3.amazonaws.com/solution-groups/images/uoHbODFyr7UpzS5eeTl1ob8kfhSPjJnO44t19Pvn.png",
"type": "APM Group",
"payment_type": "APM Group",
"supported_currencies": [
"USD",
"EUR"
],
"regions": [],
"dynamic_currency_supported": 0
},
{
"id": "e85c40be-84cc-11f0-9736-fc54af722c86",
"name": "New Group",
"logo": "https://centralisera-staging.s3.amazonaws.com/solution-groups/images/OrUIVRKdsOSz2wi7Rjd48HGZ2VFjQ2Nz8YkjoA9G.png",
"type": "APM Group",
"payment_type": "APM Group",
"supported_currencies": [
"USD",
"EUR"
],
"regions": [],
"dynamic_currency_supported": 0
}
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
success | boolean | Request success status |
message | string | Response message |
data | array | Array of solution group objects |
data[].id | string | Unique solution group ID (UUID format) |
data[].name | string | Solution group name |
data[].logo | string | URL to solution group logo image |
data[].type | string | Group type (e.g., "APM Group") |
data[].payment_type | string | Payment type classification |
data[].supported_currencies | array | List of supported ISO 4217 currency codes |
data[].regions | array | Supported geographical regions (if applicable) |
data[].dynamic_currency_supported | integer | Whether dynamic currency conversion is supported (1 = yes, 0 = no) |
Usage
Solution groups allow you to organize multiple payment solutions into logical groups. This is useful for:
- Offering different payment methods to different customer segments (e.g., VIP customers)
- Managing payment solutions by region or currency
- Simplifying payment method selection for specific use cases
tip
You can use the solution group id from this response in the Payment Request API as solutionGroupUuid to process payments through a specific solution group.
Related Endpoints
- Solutions List - Get individual payment solutions
- Payment with Solution Group - Process payment through a solution group