Operation
Information of the operation
Style |
---|
table { width: 100%; } body.page-gadget { padding-top: 20px; } .separator{ margin: 5px 0; } |
Div | ||
---|---|---|
| ||
GET |
Div | ||
---|---|---|
| ||
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/publicAPIEventQueue |
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true | Unique identificator of the chain. | |
propertyId | Integer | true | Unique identificator of the property. | |
publicApiEventEntityIdList | List of Integer | false | Optional filter of the list of eventEntities to be shown. | |
offset | Integer | false | 0 | |
limit | Integer | false | 10 | |
sort | String | false | Id | |
sortMode | String | false | asc |
Example request
Code Block | ||||
---|---|---|---|---|
| ||||
GET https://publicapi-ulysescloud.com.ulysescloud.com:9797/publilc/api/v1/con/chain/1/property/1/publicAPIEventQueue |
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true | Description of the response of the success operation |
Entity
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Example response
Code Block | ||
---|---|---|
| ||
{ "count": 1115, "offset": 0, "limit": 2, "list": [{ "id": 2, "transactionId": 2565012613, "action": "I", "publicAPIEventEntity": { "id": 1, "code": "ReservationRoomStay", "name": "ReservationRoomStay" }, "relatedId": 2, "publicAPIEventQueueStatusType": { "id": 4, "code": "4", "name": "Pending" } }, { "id": 3, "transactionId": 2565013009, "action": "I", "publicAPIEventEntity": { "id": 1, "code": "ReservationRoomStay", "name": "ReservationRoomStay" }, "relatedId": 3, "publicAPIEventQueueStatusType": { "id": 4, "code": "4", "name": "Pending" } } ] } |