Get PMS providers

GET /pms/v1/providers

Returns a list of PMS providers that have been configured for the business. Only PMS providers created by the authenticated OAuth client will be returned.

Query parameters

Responses

GET /pms/v1/providers
curl \
 -X GET https://api.trial.lsk.lightspeed.app/pms/v1/providers?businessLocationId=45454565682155 \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "apiKey": "secret-1234",
    "businessLocationId": 45454565682155,
    "endpoint": "http://integration.com/pms/endpoint",
    "features": [
      "MIRRORING"
    ],
    "id": 3012455645,
    "name": "John Smith"
  }
]