Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Operation

Information of the operation

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


Request

PropertyTypeRequiredDefault valueDescription
chainIdIntegertrue
Unique identificator of the chain.
propertyIdIntegertrue
Unique identificator of the property.
offsetIntegerfalse0
limitIntegerfalse10
sortStringfalseId
sortModeStringfalseasc

Example request

GET https://prod.ulysescloud.com/api/v1/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"
			}
		}
	]
}
  • No labels