Properties
Detail about properties created in elyssa app
1. Get all proproperties
Listing of all properties with information pagination
GET /property/get_properties/{companyId}
List the properties that a company has registered in elyssa app; To improve performance, the information is paginated, the amount of data to be returned in each query is established
🤔 Each query returns a maximum of 20 properties
Params parameter
Name
Type
Description
companyId
uuid
internal company id on elyssa app
Query Parameters
Name
Type
Description
page*
number
first page: 1
sorter*
string
Options: 'desc' or 'asc'
{
"data": [
{
"PropertyId": "002dd686-df79-4197-b1c6-31af14ba018",
"Address": "carrera 62 no 76 95 ",
"Neighborhood": "Concepción",
"Code": "",
"City": "barranquilla",
"CreationDate": "2020-08-19T20:17:56.603Z",
"IsActive": true,
"Detail": null,
"PropertyType": {
"typeName": "Apartamento"
}
},
{
"PropertyId": "004edb2d-e129-4e86-be19-009971c807c",
"Address": "prueba apptuno",
"Neighborhood": "apptuno",
"Code": "12345",
"City": "Bogota prueba",
"CreationDate": "2021-10-29T01:11:13.527Z",
"IsActive": true,
"Detail": null,
"PropertyType": {
"typeName": "Apartamento"
}
},
{
"PropertyId": "007235af-dff3-47b0-b684-3e690c00d936",
"Address": "ignacio manuel altamirano 78",
"Neighborhood": "San Rafael",
"Code": "06470",
"City": "ciudad de mexico",
"CreationDate": "2023-02-03T23:58:12.963Z",
"IsActive": true,
"Detail": null,
"PropertyType": {
"typeName": "Apartamento"
}
},
{
"PropertyId": "00e2e10c-db41-4589-b11b-673fc172d979",
"Address": "calle 79 no 67 -89",
"Neighborhood": "recreo",
"Code": "123",
"City": "Barranquilla",
"CreationDate": "2020-09-21T18:35:49.497Z",
"IsActive": true,
"Detail": null,
"PropertyType": {
"typeName": "Apartamento"
}
},
],
"meta": {
"total": 1053,
"lastPage": 106,
"currentPage": 1,
"perPage": 20,
"prev": null,
"next": 2
}
}2. Property detail
Detail of a property
GET /property/get_property_uuid/{propertyId}
All information about property with his inventories
Path Parameters
Name
Type
Description
propertyId*
uuid
Unique id of property
Authentication
AuthenticationResponse
Read the documentation for the inventoryType attribute to understand the type of inventory present in the properties.
Last updated