Get list of PublicAPIEventQueue

Operation

Information of the operation

GET
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/publicAPIEventQueue


Request

PropertyTypeRequiredDefault valueDescription
chainIdIntegertrue
Unique identificator of the chain.
propertyIdIntegertrue
Unique identificator of the property.

publicApiEventEntityIdList

List of Integerfalse
Optional filter of the list of eventEntities to be shown.
offsetIntegerfalse0
limitIntegerfalse10
sortStringfalseId
sortModeStringfalseasc

Example request

GET https://publicapi-providers.ulysescloud.com/public/api/v1/con/chain/1/property/1/publicAPIEventQueue


Response

PropertyTypeRequiredDescription
PagePagetrueDescription of the response of the success operation

Entity



FieldTypeRequiredDescription
idIntegertrueUnique identifier for the PublicAPIEventQueue.
transactionIdBigIntegertrueTransaction of the PublicAPIEventQueue.
actionStringtrueInsert, Update or Delete
publicAPIEventEntityPublicApiEventEntitytrueRelated event entity.
relatedIdIntegertrueId of the entity that produced this PublicAPIEventQueue.
publicAPIEventQueueStatusTypePublicAPIEventQueueStatusTypetrueStatus 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"
			}
		}
	]
}