Appearance
Farms
Description
Fields
| Field | Description | Data Type |
|---|---|---|
| id | Unique identifier for the object | UUID |
| name | Name for the object | String |
| societyId | Identifier for the society object | String |
| createdAt | Timestamp of when the object was created | String |
| updatedAt | Timestamp of the last update to the object | String |
| deletedAt | Timestamp of when the object was deleted, or null if not deleted | String or null |
| societyFarms | Array Society Farms | Array[SocietyFarm] |
SocietyFarm
| Field | Description | Data Type |
|---|---|---|
| id | Unique identifier for the object | UUID |
| societyId | Identifier for the society object | String |
| farmId | Identifier for the farm object | UUID |
| createdAt | Timestamp of when the object was created | String |
| updatedAt | Timestamp of the last update to the object | String |
| deletedAt | Timestamp of when the object was deleted, or null if not deleted | String or null |
List Farms
http
GET /farmsResponse
json
{
"data": [
{
"id": "81d679cf-39a8-4dce-8b43-c1ab0525669b",
"name": "PANASQUEIRA",
"domainId": "AGG",
"createdAt": "2024-12-28T09:49:11.117Z",
"updatedAt": "2024-12-28T09:49:11.117Z",
"deletedAt": null,
"societyFarms": [
{
"id": "4d27635e-477d-48c6-bd5e-e9dc59fd40b8",
"societyId": "508315883",
"farmId": "81d679cf-39a8-4dce-8b43-c1ab0525669b",
"createdAt": "2024-12-28T10:03:45.319Z",
"updatedAt": "2024-12-28T10:03:45.319Z",
"deletedAt": null
},
{
"id": "bf9aebcc-9bcb-407e-9902-3c8f6069dbb1",
"societyId": "508074363",
"farmId": "81d679cf-39a8-4dce-8b43-c1ab0525669b",
"createdAt": "2024-12-30T12:32:50.500Z",
"updatedAt": "2024-12-30T12:32:50.500Z",
"deletedAt": null
},
{
"id": "b967c572-532e-47b9-8853-98dbc9f0dee3",
"societyId": "508582938",
"farmId": "81d679cf-39a8-4dce-8b43-c1ab0525669b",
"createdAt": "2024-12-28T10:03:57.058Z",
"updatedAt": "2024-12-28T10:03:57.058Z",
"deletedAt": null
}
]
}
],
"meta": {
"itemsPerPage": 20,
"totalItems": 1,
"currentPage": 1,
"totalPages": 1,
"sortBy": [["createdAt", "DESC"]]
},
"links": {
"current": "http://api-dev.aggraria.digital/v1.0/farms?page=1&limit=20"
}
}