Operation
Information of the operation
GET
https://{environment}.ulysescloud.com/public/api/{version}/con/chain/{chainId}/property/user
Request
Property | Type | Required | Default value | Description |
---|---|---|---|---|
chainId | Integer | true | Unique identificator of the chain. | |
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. |
search | string | false | search parameter |
Example request
GET https://publicapi-providers.ulysescloud.com:9797/public/api/v1/con/chain/1/property/user
Response
Property | Type | Required | Description |
---|---|---|---|
Page | Page | true | Description of the response of the success operation |
Entity
Field Type Required Description id int true Id code string true Code name string true Name remark string true colorCode string true active boolean true inactiveReason string true propertyClassTypeRating PropertyClassTypeRating false propertyAddress PropertyAdress false propertyPhone PropertyPhone false propertyEmail PropertyEmail false chainPropertyGroupList ChainPropertyGroup false
Example response
{ "count": 2, "offset": 0, "limit": 10, "list": [ { "id": 1, "code": "EMP", "name": "Empty Property", "remark": null, "colorCode": null, "active": true, "inactiveReason": null, "propertyClassTypeRating": null, "propertyAddress": null, "propertyPhone": null, "propertyEmail": null }, { "id": 2, "code": "ALI", "name": "Hotel Alicante", "remark": null, "colorCode": "#7CB342", "active": true, "inactiveReason": null, "propertyClassTypeRating": { "id": 6, "code": "13S", "name": "3 *** S", "nameI18n": "3 *** S", "propertyClassType": { "id": 1, "code": "1", "name": "Hotel", "nameI18n": "Hotel" } }, "propertyAddress": { "id": 1, "primary": false, "street": "0 Thierer Road", "city": "Saint Louis", "stateProvName": "Cáceres", "postalCode": "63169", "country": { "id": 199, "code": "ESP", "name": "SPAIN", "nameI18n": "SPAIN" }, "remark": null }, "propertyPhone": { "id": 1, "primary": false, "countryAccessCode": "+34", "areaCityCode": "B", "phoneNumber": "1-(314)251-2150", "extension": "1", "remark": null }, "propertyEmail": { "id": 1, "primary": false, "email": "cweaverip@usgs.gov", "remark": null } } ] }