v1

latestOpenAPI 3.1.02026-07-242325051.4 MB
Services

Service:GetAvailablePaymentMethods

Get all available payment methods for a service with the boarding status. So if you have requested a payment method, you can also see the status of the needed boarding for that specific payment profile. You need to have access to that service to get the data.

get/v2/services/{serviceId}/paymentmethods

Path parameters

serviceIdstring required

Provide the SL-code of the service that you want the payment methods for

Query parameters

eqstring

Get results that equal the given value

Provides filtering based on merchant code.

{
  "eq": "M-1234-4321"
}

Response

OK

Example response

{
  "paymentMethods": [
    {
      "id": 10,
      "name": "iDeal",
      "active": true,
      "boarding": {
        "code": "BO-1234-4321",
        "status": "ACCEPTED",
        "completedAt": "2023-11-27T12:42:29+02:00"
      }
    }
  ]
}