curl --request GET \
--url https://v1.api.flux-os.com/land/descriptions \
--header 'x-api-key: <api-key>' \
--header 'x-user-id: <api-key>'{
"data": [
{
"description": "<string>",
"latitude": 123,
"longitude": 123,
"id": "<string>",
"survey_system": {
"name": "<string>",
"short_code": "<string>",
"id": "<string>"
},
"unit": {
"name": "<string>",
"short_code": "<string>",
"id": "<string>"
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"current_page": 123,
"total_pages": 123,
"total_items": 123,
"per_page": 123
}
}Retrieve a list of land descriptions with pagination.
curl --request GET \
--url https://v1.api.flux-os.com/land/descriptions \
--header 'x-api-key: <api-key>' \
--header 'x-user-id: <api-key>'{
"data": [
{
"description": "<string>",
"latitude": 123,
"longitude": 123,
"id": "<string>",
"survey_system": {
"name": "<string>",
"short_code": "<string>",
"id": "<string>"
},
"unit": {
"name": "<string>",
"short_code": "<string>",
"id": "<string>"
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"current_page": 123,
"total_pages": 123,
"total_items": 123,
"per_page": 123
}
}Page number for pagination
x >= 1A paginated list of land descriptions.
Show child attributes