Services List [GET]
Operation
Get the list of services in a paged array.
GET
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/{propertyId}/service
Request
Property | Type | Required | Type parameter | Default value | Description |
---|---|---|---|---|---|
chainId | Integer | true | path parameter | Unique identificator of the chain. | |
propertyId | Integer | true | path parameter | Unique identificator of the property. | |
offset | Integer | false | request parameter | 0 | Offset of the array of results. |
limit | Integer | false | request parameter | 10 | Limit of results. |
sort | string | false | request parameter | id | Property of the entity to sort by. |
sortMode | string | false | request parameter | asc | Mode of sorting. |
Example request
GET https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/property/1/service
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true | Description of the response of the success operation |
Entity
The entity returned is a Page with a list of Service's. Description of the Service entity:
Field Type Required Description id int true Unique identifier for the Service. code String true Code of the Service. name String true Name of the Service. forecastList ProductServiceAvailability false A list of associated ProductServiceAvailability to this Service. Only apears if we have data.
Example response
{ "count": 27, "offset": 0, "limit": 3, "list": [{ "id": 46, "code":"ECR", "name": "Extra Charge Room" }, { "id": 51, "code":"COT", "name": "Cot" }, { "id": 56, "code":"NS", "name": "No Show" } ] }