{ "info": { "name": "TODO API Test", "_postman_id": "a83a73d7-3951-2d2a-bfec-0fe82ff06efd", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "Get List", "request": { "auth": { "type": "noauth" }, "method": "GET", "header": [], "body": {}, "url": { "raw": "http://127.0.0.1:5000/api/todo", "protocol": "http", "host": [ "127", "0", "0", "1" ], "port": "5000", "path": [ "api", "todo" ] } }, "response": [] }, { "name": "Save", "request": { "auth": { "type": "noauth" }, "method": "POST", "header": [ { "key": "Content-Type", "value": "application/x-www-form-urlencoded" } ], "body": { "mode": "urlencoded", "urlencoded": [ { "key": "texte", "value": "valentin", "type": "text" } ] }, "url": { "raw": "http://127.0.0.1:5000/api/todo", "protocol": "http", "host": [ "127", "0", "0", "1" ], "port": "5000", "path": [ "api", "todo" ] } }, "response": [] }, { "name": "Mark as done", "request": { "auth": { "type": "noauth" }, "method": "POST", "header": [], "body": {}, "url": { "raw": "http://127.0.0.1:5000/api/todo/done/31870af2-3984-4882-9928-e69e56ed5ee2", "protocol": "http", "host": [ "127", "0", "0", "1" ], "port": "5000", "path": [ "api", "todo", "done", "31870af2-3984-4882-9928-e69e56ed5ee2" ] } }, "response": [] }, { "name": "Delete", "request": { "auth": { "type": "noauth" }, "method": "DELETE", "header": [], "body": {}, "url": { "raw": "http://127.0.0.1:5000/api/todo/delete/1", "protocol": "http", "host": [ "127", "0", "0", "1" ], "port": "5000", "path": [ "api", "todo", "delete", "1" ] } }, "response": [] } ] }