Skip to main content
GET
/
payment-methods
List Payment Methods
curl --request GET \
  --url https://integrations.clopos.com/open-api/payment-methods \
  --header 'x-brand: <api-key>' \
  --header 'x-token: <api-key>' \
  --header 'x-venue: <api-key>'
[
  {
    "id": 123,
    "name": "<string>",
    "customer_required": 123,
    "is_system": 123,
    "balance": {
      "id": 123,
      "amount": 123,
      "type": "<string>"
    }
  }
]

Authorizations

x-token
string
header
required

Access token obtained from /auth endpoint

x-brand
string
header
required

Brand identifier

x-venue
string
header
required

Venue identifier

Response

200 - application/json

Payment methods retrieved successfully.

id
integer
name
string
customer_required
integer
is_system
integer
balance
object