Get PMS providers
Returns a list of PMS providers that have been configured for the business location. Only PMS providers created by the authenticated OAuth client will be returned.
Query parameters
-
businessLocationId
integer(int64) The unique identifier for the business location.
GET
/pms/v1/providers
curl \
--request GET 'https://api.lsk.lightspeed.app/pms/v1/providers' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 3012455645,
"name": "string",
"apiKey": "fake-secret",
"businessLocationId": 45454565682155,
"endpoint": "http://integration.com/pms/endpoint",
"features": [
"MIRRORING"
]
}
]