
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
The Specific District Cultivation Target Data by Season API endpoint allows users to retrieve detailed information about the cultivation targets for a specific district within a designated cultivation season. This endpoint is useful for understanding the expected agricultural production and target area for specific districts.
GET {{base_url}}/cropix/api/v1/cultivation-damage-data/seasons/{seasonId}
Request Method
Headers
Parameters
Response
Successful Response
Status Code: 200 OK
Response Body
{
"message" : null,
"resultStatus" : "SUCCESSFUL",
"httpStatus" : "OK",
"httpCode" : "200 OK",
"payloadDto" : [ {
"districtName" : "Matara",
"monthName" : "May",
"month" : 5,
"cropId" : 1,
"cropName" : "Paddy",
"totalExtent" : 0.3,
"damageCategory" : "Disease",
"damageTypeId" : "",
"damageTypeName" : ""
}, {
"districtName" : "Matara",
"monthName" : "May",
"month" : 5,
"cropId" : 1,
"cropName" : "Paddy",
"totalExtent" : 0.2,
"damageCategory" : "Pest",
"damageTypeId" : "",
"damageTypeName" : ""
}, {
"districtName" : "Kurunegala",
"monthName" : "May",
"month" : 5,
"cropId" : 1,
"cropName" : "Paddy",
"totalExtent" : 71.5,
"damageCategory" : "Climatic Hazards ",
"damageTypeId" : "1-03",
"damageTypeName" : "Yellowing"
}, {
"districtName" : "Kurunegala",
"monthName" : "May",
"month" : 5,
"cropId" : 1,
"cropName" : "Paddy",
"totalExtent" : 3.0,
"damageCategory" : "Climatic Hazards ",
"damageTypeId" : "1-10",
"damageTypeName" : "Other reasons"
}, {
"districtName" : "Hambantota",
"monthName" : "May",
"month" : 5,
"cropId" : 1,
"cropName" : "Paddy",
"totalExtent" : 87.0,
"damageCategory" : "Pest",
"damageTypeId" : "",
"damageTypeName" : ""
}, {
"districtName" : "Ratnapura",
"monthName" : "May",
"month" : 5,
"cropId" : 1,
"cropName" : "Paddy",
"totalExtent" : 0.1,
"damageCategory" : "Pest",
"damageTypeId" : "",
"damageTypeName" : ""
}, {
"districtName" : "Ratnapura",
"monthName" : "May",
"month" : 5,
"cropId" : 1,
"cropName" : "Paddy",
"totalExtent" : 0.31,
"damageCategory" : "Disease",
"damageTypeId" : "",
"damageTypeName" : ""
} ],
"totalPages" : 1,
"totalElements" : 7,
"last" : true,
"size" : 20,
"number" : 0,
"sort" : {
"empty" : true,
"sorted" : false,
"unsorted" : true
},
"numberOfElements" : 7
}
curl -X GET "{{base_url}}/cropix/api/v1/cultivation-damage-data/seasons/1
-H "Content-Type: application/json" \
-H "Authorization: YOUR_ACCESS_TOKEN"