Retrieve all
GET/scenarios/:scenarioId/assets/physical
Retrieve all Physical Assets
Request
Path Parameters
The scenario's id
Query Parameters
Zero-based page index (0..N)
Default value: 20
The size of the page to be returned
Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
content object[]
The city in the country of the asset.
The country of the asset.
The currency in which the value is expressed. Valid currency code ISO-4217 from the list of supported currencies.
Description of the resource.
The id of the resource.
The name of the resource.
properties object
Properties of the resource.
Properties of the resource.
The region in the country of the asset.
Read-only field containing the source of the data (eg. if it was imported from a 3rd party service).
The state in the country of the asset.
The valuation date of the asset.
The value of the asset.
pageable object
sort object
sort object
{
"content": [
{
"city": "London",
"country": "UK",
"currency": "GBP",
"description": "My resource's description",
"id": "1",
"name": "My resource",
"properties": {
"property_1": "Value of property 1",
"property_2": "Value of property 2"
},
"region": "London",
"source": "Source of the resource",
"state": "England",
"valuationDate": "2023-01-01T12:27:37.670Z",
"value": 70000
}
],
"empty": true,
"first": true,
"last": true,
"number": 0,
"numberOfElements": 0,
"pageable": {
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"unpaged": true
},
"size": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"totalElements": 0,
"totalPages": 0
}
Not Found
Internal Server Error