Update page 'VRAHerbicide API'

master
Mark van der Wal 2020-04-15 10:55:14 +00:00
parent abab9a6fdd
commit 69c4eb6ded
1 changed files with 5 additions and 3 deletions

View File

@ -64,7 +64,7 @@ Response 403 No WRITE permissions in item
Response 404 Item not found
###### Querying predefined herbicide agents.
A list of herbicide agents can be requested by finding the "vnd.farmmaps.package.vra.herbicide" items, taking the first item found and reading it's data field content.
A list of herbicide agents can be requested by finding the "vnd.farmmaps.package.vra.herbicide" items, taking the first item found and reading it's data field 'agents' array content.
> Request
```javascript
GET /api/v1/items/?it=vnd.farmmaps.package.vra.herbicide
@ -73,7 +73,8 @@ GET /api/v1/items/?it=vnd.farmmaps.package.vra.herbicide
```javascript
{
"code": "....",
"data": [
"data": {
"agents": [
{
"name": "Liberator",
"SoilType": "Dalgrond",
@ -88,7 +89,8 @@ GET /api/v1/items/?it=vnd.farmmaps.package.vra.herbicide
"P": 1,
"Crop": "Zetmeelaardappelen"
}
]
]
}
}
```