Get list of PublicAPIEventQueue
Operation
Information of the operation
GET
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
GET https://publicapi-providers.ulysescloud.com/public/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
Field | Type | Required | Description |
---|---|---|---|
id | Integer | true | Unique identifier for the PublicAPIEventQueue. |
transactionId | BigInteger | true | Transaction of the PublicAPIEventQueue. |
action | String | true | Insert, Update or Delete |
publicAPIEventEntity | PublicApiEventEntity | true | Related event entity. |
relatedId | Integer | true | Id of the entity that produced this PublicAPIEventQueue. |
publicAPIEventQueueStatusType | PublicAPIEventQueueStatusType | true | Status of the element. |
Example response
{ "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" } } ] }