AI based crop identification app
Made by team 99 for Smart India Hackathon 2020
All responses will have the form
{
"id": "Unique identifier",
"title": "A random title"
}
Below are the impleented methods, use Postman or something similar to query them and test out
https://todo-fpko6i4yjq-uc.a.run.app
Definition
GET /list
Response
200 OK
on success
[
{
"id": "1",
"title": "This is a random title"
},
{
"id": "2",
"title": "This is another random title"
}
]
Definition
POST /add
Arguments
{
"id": "1",
"title": "This is a random title"
}
Response
200 OK
on success
{
"success": true
}
Definition
POST /update
Arguments
{
"id": "1",
"title": "This is a random title"
}
Response
200 OK
on success
{
"success": true
}
Definition
DELETE /delete
arguments
{
"id": "1"
}
Response
200 OK
on success
{
"success": true
}