v1
latestOpenAPI 3.1.02026-07-242325051.4 MBServices
Services:List
Get a list (without pagination) of all services. If you do not supply a merchantCode we return the services that are available under your own merchant registration. If you supply a merchantCode you need to have access to that merchant.
get/v2/services/list
Query parameters
Provides filtering based on merchant code.
{
"eq": "M-1234-4321"
}Provides filtering based on status.
{
"eq": "ACTIVE",
"neq": "ACTIVE"
}Response
OK
Example response
{
"services": [
{
"code": "SL-1234-4321",
"name": "Your Service",
"status": "ACTIVE",
"translations": {
"name": {
"nl_NL": "...",
"en_GB": "..."
}
}
}
],
"total": 10
}