Skip to main content

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

ParameterTypeRequiredDescription
merchantAccountIdstringYesYour merchant account ID
customerTokenstringYesThe customer's token
merchantSolutionStatusstringNoFilter by status (e.g., Active)
typestringNoFilter 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
}
]
}