Skip to main content

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

ParameterTypeRequiredDescription
merchantAccountIdstringYesYour 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

FieldTypeDescription
successbooleanRequest success status
messagestringResponse message
dataarrayArray of solution group objects
data[].idstringUnique solution group ID (UUID format)
data[].namestringSolution group name
data[].logostringURL to solution group logo image
data[].typestringGroup type (e.g., "APM Group")
data[].payment_typestringPayment type classification
data[].supported_currenciesarrayList of supported ISO 4217 currency codes
data[].regionsarraySupported geographical regions (if applicable)
data[].dynamic_currency_supportedintegerWhether 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:

  1. Offering different payment methods to different customer segments (e.g., VIP customers)
  2. Managing payment solutions by region or currency
  3. 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.