Skip to content
innovorder
⌘K

Restaurant estate

Payment Methods

Retrieve the list of available payment methods for a specific context.

GET/payment_methodsList Payment Methods

Parameters

NameTypeRequiredDescription
channelIdintegerYesChannel ID (e.g. 5 for POS)
restaurantIdintegerYesRestaurant ID

Response

json
{
  "status": 200,
  "data": [
    {
      "id": 144076,
      "code": "CreditCard",
      "label": "CB",
      "active": true
    }
  ]
}
Response Properties

Every field in the example is listed below. Explicit requiredness is shown when the endpoint contract defines it.

PropertyTypeExampleDescription
statusinteger200HTTP status code returned by the API.
dataarray[…]Endpoint-specific response payload.
data[]object{…}Endpoint-specific response payload.
data[].idinteger144076The id value.
data[].codestring"CreditCard"Machine-readable application code for the result.
data[].labelstring"CB"The label value.
data[].activebooleantrueThe active value.