Get Payment Methods
Returns all payment methods for a business location.
Path parameters
-
The unique identifier for the business location.
GET /f/finance/{businessLocationId}/paymentMethods
curl \
-X GET https://api.trial.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"
}
}
}