Update page 'VRAHerbicide API'

This commit is contained in:
Mark van der Wal 2020-04-15 10:55:14 +00:00
parent abab9a6fdd
commit 69c4eb6ded

View File

@ -64,7 +64,7 @@ Response 403 No WRITE permissions in item
Response 404 Item not found Response 404 Item not found
###### Querying predefined herbicide agents. ###### 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 > Request
```javascript ```javascript
GET /api/v1/items/?it=vnd.farmmaps.package.vra.herbicide 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 ```javascript
{ {
"code": "....", "code": "....",
"data": [ "data": {
"agents": [
{ {
"name": "Liberator", "name": "Liberator",
"SoilType": "Dalgrond", "SoilType": "Dalgrond",
@ -90,6 +91,7 @@ GET /api/v1/items/?it=vnd.farmmaps.package.vra.herbicide
} }
] ]
} }
}
``` ```
Response 400 Tasktype not found Response 400 Tasktype not found