Skip to content

Farms

Description

Fields

FieldDescriptionData Type
idUnique identifier for the objectUUID
nameName for the objectString
societyIdIdentifier for the society objectString
createdAtTimestamp of when the object was createdString
updatedAtTimestamp of the last update to the objectString
deletedAtTimestamp of when the object was deleted, or null if not deletedString or null
societyFarmsArray Society FarmsArray[SocietyFarm]

SocietyFarm

FieldDescriptionData Type
idUnique identifier for the objectUUID
societyIdIdentifier for the society objectString
farmIdIdentifier for the farm objectUUID
createdAtTimestamp of when the object was createdString
updatedAtTimestamp of the last update to the objectString
deletedAtTimestamp of when the object was deleted, or null if not deletedString or null

List Farms

http
GET /farms

Response

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"
  }
}