Operation
Information of the operation
Rw ui textbox macro | ||
---|---|---|
| ||
Only accessible with permission of pms.integration.pbx |
Style |
---|
table { width: 100%; } body.page-gadget { padding-top: 20px; } .separator{ margin: 5px 0; } |
Div | ||
---|---|---|
| ||
GET |
Div | ||
---|---|---|
| ||
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
Code Block | ||||
---|---|---|---|---|
| ||||
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
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Example response
Code Block | ||
---|---|---|
| ||
{ "count": 1, "offset": 0, "limit": 10, "list": [{ "id": 5, "pbxRequestType": { "id": 1, "code": "CI", "name": "CheckIn" }, "modulespace": { "id": 1, "code": "101", "name": "M101S101", "roomModuleStatusTypeModelroomSpaceStatusType": { "id": 1, "code": "CL", "name": "Clean" } }, "reservationRoomStay": null, "responseStatusCode": { "id": 4, "code": "4", "name": "Pending" } }] } |