Operation
Information of the operation
GET
https://{environment}.ulysescloud.com/public/api/{version}/chain/{chainId}/property/{propertyId}/module
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true | Unique identificator of the chain. | |
propertyId | Integer | true | Unique identificator of the property. | |
offset | Integer | false | 0 | Offset of the array of results. |
limit | Integer | false | 10 | Limit of results. |
sort | string | false | id | Property of the entity to sort by. |
sortMode | string | false | Asc | Mode of sorting. |
Example request
GET https://prod.ulysescloud.com/public/api/v1/chain/1/property/2/module
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true | Description of the response of the success operation |
Entity
Error rendering macro 'excerpt-include' : No link could be created for 'Module'.
Example response
{ "count": 2, "offset": 0, "limit": 10, "list": [{ "id": 1, "code": "101", "name": "M101", "roomModuleStatusTypeModel": { "id": 1, "code": "CL", "name": "Clean" } }, { "id": 2, "code": "102", "name": "M102", "roomModuleStatusTypeModel": { "id": 1, "code": "CL", "name": "Clean" } } ] }