curl -X GET "https://api.confor.app/api/forest/patrimony?level=3&parentId=550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_TOKEN"
{
"items": [
{
"id": "660e8400-e29b-41d4-a716-446655440001",
"level2Id": "550e8400-e29b-41d4-a716-446655440000",
"code": "COMP-A",
"name": "Compartimiento Norte",
"type": "COMPARTIMIENTO",
"totalAreaHa": 450.25,
"centroidLatitude": 10.52,
"centroidLongitude": -66.88,
"lastInfoDate": "2024-01-10T00:00:00Z",
"isActive": true,
"createdAt": "2024-01-15T10:35:00Z",
"updatedAt": "2024-01-15T10:35:00Z",
"level2": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"code": "FINCA-001",
"name": "La Esperanza"
}
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 25,
"totalPages": 1
}
}
curl -X GET "https://api.confor.app/api/forest/patrimony?level=3&parentId=550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_TOKEN"
{
"items": [
{
"id": "660e8400-e29b-41d4-a716-446655440001",
"level2Id": "550e8400-e29b-41d4-a716-446655440000",
"code": "COMP-A",
"name": "Compartimiento Norte",
"type": "COMPARTIMIENTO",
"totalAreaHa": 450.25,
"centroidLatitude": 10.52,
"centroidLongitude": -66.88,
"lastInfoDate": "2024-01-10T00:00:00Z",
"isActive": true,
"createdAt": "2024-01-15T10:35:00Z",
"updatedAt": "2024-01-15T10:35:00Z",
"level2": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"code": "FINCA-001",
"name": "La Esperanza"
}
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 25,
"totalPages": 1
}
}
Level 2 (FINCA, PREDIO, etc.)
└─ Level 3 (COMPARTIMIENTO, BLOCK, etc.) ← You are here
└─ Level 4 (Stands, Parcels, Management Units)
└─ Level 5 (Reference Units, Sub-parcels)
level2Id.
"3" to retrieve Level 3 unitsCOMPARTIMIENTO - CompartmentBLOCK - BlockSECCION - SectionLOTE - LotZONA - ZoneBLOQUE - Block (alternative)ZONIFICACION - Zoningcurl -X GET "https://api.confor.app/api/forest/patrimony?level=3&parentId=550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_TOKEN"
{
"items": [
{
"id": "660e8400-e29b-41d4-a716-446655440001",
"level2Id": "550e8400-e29b-41d4-a716-446655440000",
"code": "COMP-A",
"name": "Compartimiento Norte",
"type": "COMPARTIMIENTO",
"totalAreaHa": 450.25,
"centroidLatitude": 10.52,
"centroidLongitude": -66.88,
"lastInfoDate": "2024-01-10T00:00:00Z",
"isActive": true,
"createdAt": "2024-01-15T10:35:00Z",
"updatedAt": "2024-01-15T10:35:00Z",
"level2": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"code": "FINCA-001",
"name": "La Esperanza"
}
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 25,
"totalPages": 1
}
}
"3" to create a Level 3 unitCOMPARTIMIENTO, BLOCK, SECCION, LOTE, ZONA, BLOQUE, ZONIFICACIONcurl -X POST "https://api.confor.app/api/forest/patrimony" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"level": "3",
"data": {
"level2Id": "550e8400-e29b-41d4-a716-446655440000",
"code": "COMP-A",
"name": "Compartimiento Norte",
"type": "COMPARTIMIENTO",
"totalAreaHa": 450.25,
"centroidLatitude": 10.52,
"centroidLongitude": -66.88
}
}'
{
"id": "660e8400-e29b-41d4-a716-446655440001",
"level2Id": "550e8400-e29b-41d4-a716-446655440000",
"code": "COMP-A",
"name": "Compartimiento Norte",
"type": "COMPARTIMIENTO",
"totalAreaHa": 450.25,
"centroidLatitude": 10.52,
"centroidLongitude": -66.88,
"lastInfoDate": null,
"isActive": true,
"createdAt": "2024-01-15T10:35:00Z",
"updatedAt": "2024-01-15T10:35:00Z",
"level2": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"code": "FINCA-001",
"name": "La Esperanza"
}
}