Used Solutions
Get a list of payment solutions previously used by a customer.
Endpoint Information
Name: Get Customer's Previously Used Solutions
Method: GET
URL: {{BASE_URL}}/api/v1/apm/customer-solutions
Description
Retrieve a list of payment solutions that have been previously used by a specific customer. This is useful for analyzing customer preferences or offering "last used method" shortcuts.
Authentication
Type: Basic Auth
- Username: App Key
- Password: Secret Key
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
merchantAccountId | string | Yes | Your merchant account ID |
customerToken | string | Yes | The customer's token |
merchantSolutionStatus | string | No | Filter by status (e.g., Active) |
type | string | No | Filter by type (e.g., Alternative Payments Methods) |
Response
Success Response
{
"success": true,
"message": "Customer solutions retrieved successfully",
"data": [
{
"id": "2c032c79-dbb5-47b3-a575-c4098e687226",
"name": "Skrill",
"type": "Alternative Payments Methods",
"status": "Active",
"last_used": "2025-12-15 10:30:45"
// ...other fields
}
]
}