Get a PMS provider by ID

GET /pms/v1/providers/{id}

Returns the details of a specific PMS provider.

Only PMS providers created by the authenticated OAuth client will be returned.

Path parameters

  • id integer(int64) Required

Responses

GET /pms/v1/providers/{id}
curl \
 -X GET https://api.trial.lsk.lightspeed.app/pms/v1/providers/3012455645 \
 -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"
}