Operation
Information of the operation
GET
https://{environment}.ulysescloud.com/public/api/{version}/chain/{chainId}/property/{propertyId}/pbx/{integrationId}/requests
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true | Unique identificator of the chain. | |
propertyId | Integer | true | Unique identificator of the property. | |
integrationId | Integer | true | Unique identificator of the Integration. | |
offset | Integer | false | 0 | Offset of the array of results. |
limit | Integer | false | 10 | Limit of results. |
sort | string | false | id | Property of the entity to sort by. |
sortMode | string | false | Asc | Mode of sorting. |
Example request
GET https://prod.ulysescloud.com/public/api/v1/chain/1/property/3/pbx/9/requests
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true | Paged result |
Entity
pbxRequestType space reservationRoomStay responseStatusCodeField Type Required Description id int true Unique identifier for the PBXRequestQueue. PBXRequestType true Type of request. Space true Space related to this request. ReservationRoomStay false ReservationRoomStay related to this request. ResponseStatusCode true Status of this request in the queue.
Example response
{ "count": 1, "offset": 0, "limit": 10, "list": [{ "id": 5, "pbxRequestType": { "id": 1, "code": "CI", "name": "CheckIn" }, "space": { "id": 1, "code": "101", "name": "S101", "roomSpaceStatusType": { "id": 1, "code": "CL", "name": "Clean" } }, "reservationRoomStay": null, "responseStatusCode": { "id": 4, "code": "4", "name": "Pending" } }] }