curl --request GET \
--url https://api.example.com/api/forest/biological-assets{
"items": [
{
"id": "<string>",
"level4Id": "<string>",
"biologicalAssetKey": "<string>",
"accountingKey": "<string>",
"establishmentDate": "<string>",
"plantingYear": 123,
"geneticMaterialCode": "<string>",
"geneticMaterialName": "<string>",
"assetType": "<string>",
"managementSchemeCode": "<string>",
"managementSchemeName": "<string>",
"inventoryCode": "<string>",
"inventoryType": "<string>",
"inventoryDate": "<string>",
"inventoryAgeYears": 123,
"level5UnitCount": 123,
"spacingCode": "<string>",
"spacingDescription": "<string>",
"spacingBetweenRowsM": 123,
"spacingBetweenTreesM": 123,
"treeDensityPerHa": 123,
"survivalRate": 123,
"dominantHeightM": 123,
"meanHeightM": 123,
"quadraticDiameterM": 123,
"basalAreaM2": 123,
"unitVolumeM3NoBarkPerHa": 123,
"unitVolumeM3WithBarkPerHa": 123,
"totalVolumeM3NoBark": 123,
"totalVolumeM3WithBark": 123,
"adjustedVolumeM3NoBarkPerHa": 123,
"adjustedVolumeM3WithBarkPerHa": 123,
"imaClassCode": "<string>",
"imaClassName": "<string>",
"actualCostUsd": 123,
"isActive": true,
"createdAt": {},
"updatedAt": {},
"level4": {
"id": "<string>",
"code": "<string>",
"name": "<string>"
}
}
],
"pagination": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123
}
}Retrieve a paginated list of biological assets
curl --request GET \
--url https://api.example.com/api/forest/biological-assets{
"items": [
{
"id": "<string>",
"level4Id": "<string>",
"biologicalAssetKey": "<string>",
"accountingKey": "<string>",
"establishmentDate": "<string>",
"plantingYear": 123,
"geneticMaterialCode": "<string>",
"geneticMaterialName": "<string>",
"assetType": "<string>",
"managementSchemeCode": "<string>",
"managementSchemeName": "<string>",
"inventoryCode": "<string>",
"inventoryType": "<string>",
"inventoryDate": "<string>",
"inventoryAgeYears": 123,
"level5UnitCount": 123,
"spacingCode": "<string>",
"spacingDescription": "<string>",
"spacingBetweenRowsM": 123,
"spacingBetweenTreesM": 123,
"treeDensityPerHa": 123,
"survivalRate": 123,
"dominantHeightM": 123,
"meanHeightM": 123,
"quadraticDiameterM": 123,
"basalAreaM2": 123,
"unitVolumeM3NoBarkPerHa": 123,
"unitVolumeM3WithBarkPerHa": 123,
"totalVolumeM3NoBark": 123,
"totalVolumeM3WithBark": 123,
"adjustedVolumeM3NoBarkPerHa": 123,
"adjustedVolumeM3WithBarkPerHa": 123,
"imaClassCode": "<string>",
"imaClassName": "<string>",
"actualCostUsd": 123,
"isActive": true,
"createdAt": {},
"updatedAt": {},
"level4": {
"id": "<string>",
"code": "<string>",
"name": "<string>"
}
}
],
"pagination": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123
}
}forest-biological-asset READ or CREATE/UPDATE/DELETE permissions. SUPER_ADMIN role has full access.
biologicalAssetKey, accountingKey, assetType, plantingYear, inventoryCode, isActive, createdAtasc, descShow Biological Asset Object
COMERCIAL, INVESTIGACIONcurl -X GET "https://api.example.com/api/forest/biological-assets?level4Id=123e4567-e89b-12d3-a456-426614174000&search=pine&page=1&limit=25" \
-H "Authorization: Bearer YOUR_TOKEN"
{
"items": [
{
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"level4Id": "123e4567-e89b-12d3-a456-426614174000",
"biologicalAssetKey": "BA-PINE-001",
"accountingKey": "ACC-001",
"establishmentDate": "2020-03-15T00:00:00Z",
"plantingYear": 2020,
"geneticMaterialCode": "GM-001",
"geneticMaterialName": "Pinus caribaea",
"assetType": "COMERCIAL",
"inventoryCode": "INV-2023-001",
"inventoryType": "Full Inventory",
"inventoryDate": "2023-06-01T00:00:00Z",
"inventoryAgeYears": 3,
"treeDensityPerHa": 1111,
"survivalRate": 95.5,
"dominantHeightM": 12.5,
"meanHeightM": 11.2,
"actualCostUsd": 15000.00,
"isActive": true,
"createdAt": "2023-01-10T14:30:00Z",
"updatedAt": "2023-06-15T09:20:00Z",
"level4": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"code": "L4-001",
"name": "Rodal Norte"
}
}
],
"pagination": {
"total": 48,
"page": 1,
"limit": 25,
"totalPages": 2
}
}