Get Payment Methods

GET /f/finance/{businessLocationId}/paymentMethods

Returns all payment methods for a business location.

Path parameters

Responses

  • 200 application/json

    Payment methods returned

    Hide response attributes Show response attributes object
    • Hide _embedded attribute Show _embedded attribute
      • paymentMethodList array[object]
        Hide paymentMethodList attributes Show paymentMethodList attributes object
        • name string

          Name of the payment type

        • code string

          System code for the payment type

        • Accounting reference code, if assigned

        • pmId number

          System identification number for payment type

GET /f/finance/{businessLocationId}/paymentMethods
curl \
 -X GET https://api.lsk.lightspeed.app/f/finance/{businessLocationId}/paymentMethods \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "_embedded": {
    "paymentMethodList": [
      {
        "name": "Cash",
        "code": "CASH",
        "accountingReference": "cash-payment",
        "pmId": 1234567890
      }
    ]
  },
  "_links": {
    "self": {
      "href": "https:///api.ikentoo.com/finance/1234567/paymentMethodss"
    }
  }
}