This simple end-point provides you with the ability to POST, EDIT, DELETE or GET todo(s) without hustle and just focus with your front end part of either web or mobile app
https://datastore-5ecb.onrender.com
{
"id": "todo-id",
"title": "Todo title",
"description": "Todo description",
"isComplete": booleanValue,
"createdAt": ISOString("2023-08-11T09:47:15.627Z"),
"lastUpdate": ISOString("2023-08-11T09:47:15.627Z")
}
{endpoint}/api/
{endpoint}/api/{todo-id}
{endpoint}/api/create
body : {
"title": "Todo title",
"description": "Todo description",
"isComplete": false
}
{endpoint}/api/delete/{todo-id}
{endpoint}/api/edit/{todo-id}