Kiosks
Returns an array of kiosks. Note that many of the subsequent SEMA web services will require a kiosk identifier.
Endpoints¶
GET sema/kiosks
Headers¶
Header | Required | Example | Description |
---|---|---|---|
Authorization | YES | Authorization: Bearer xxxx.yyyy.zzzz |
Contains token as received from login |
Path Parameters¶
None
Query Parameters¶
None
Sample request¶
Note
The token length is reduced in size
1 | curl --header "Authorization: Bearer <token>" http://localhost:3001/sema/kiosks |
Sample Response¶
1 2 3 4 5 6 7 8 9 | { "kiosks": [ { "id": 2, "name": "Kiswa", "region_id": 2 } ] } |