Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Operation

Get a list of all the boards.

Rw ui textbox macro
typewarning

Only accessible with permission of pms.integration.product


Style
table {
width: 100%;
}
body.page-gadget {
padding-top: 20px;
}
.separator{
margin: 5px 0;
}



Div
style background-color: green; color: white; display: inline-block; padding: 5px; border-radius: 3px;

GET Single property request



Div
stylebackground-color: #0a2b1d; padding: 10px 1em; display: inline-block; color: white; border-radius: 3px;

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




Request

PropertyTypeRequiredType ParameterDefault valueDescription
chainIdIntegertruepath parameter
Unique identificator of the chain.
propertyIdIntegertruepath parameter
Unique identificator of the property.
dateLocalDatefalserequest parameter
date of the offset
limitIntegerfalserequest parameter10Limit of results.


Example Single Property request

Code Block
languagepowershell
themeDJango
GET https://publicapi-providers.ulysescloud.com/public/api/v1/con/chain/1/property/1/board/forecast



Response

PropertyTypeRequiredDescription
PagePagetrueDescription of the response of the success operation

Entity

The entity returned is a Page with a list of Board's. Description of the Board entity:

Insert excerpt
Board
Board
nopaneltrue

Example Single Property response

Code Block
themeDJango
{
  "count": 4,
  "offset": 0,
  "limit": 10,
  "list": [
    {
      "id": 5,
      "code": null,
      "name": "Room Only",
      "serviceList": null, 
	  "forecastList": [
			{
			    "boardId": 2,
			    "date": "2022-08-25",
			    "quantityConsumedAdult": 5,
			    "quantityConsumedJunior": 4,
			    "quantityConsumedChild": 2,
			    "quantityConsumedInfant": 1,
			}...
		]
    },
    {
      "id": 6,
      "code": null,
      "name": "Bed And Breakfast",
      "serviceList": [
        {
          "id": 63,
          "code": "BRK",
          "name": "Breakfast"
        }
      ], 
	  "forecastList": [
			{
			    "boardId": 6,
			    "date": "2022-08-15",
			    "quantityConsumedAdult": 5,
			    "quantityConsumedJunior": 4,
			    "quantityConsumedChild": 2,
			    "quantityConsumedInfant": 1,
			}...
		]
    },
    {
      "id": 7,
      "code": null,
      "name": "HalfBoard",
      "serviceList": [
        {
          "id": 63,
          "code": "BRK",
          "name": "Breakfast"
        },
        {
          "id": 68,
          "code": "DINNER",
          "name": "Dinner"
        }
      ], 
	  "forecastList": [
			{
			    "boardId": 27,
			    "date": "2022-08-25",
			    "quantityConsumedAdult": 5,
			    "quantityConsumedJunior": 4,
			    "quantityConsumedChild": 2,
			    "quantityConsumedInfant": 1,
			}...
		]   
    }
  ]
}