{ "info": { "_postman_id": "105694ac-8742-48fe-94cf-63b0403084d5", "name": "Todo", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "_exporter_id": "14791724" }, "item": [ { "name": "Create Todo", "request": { "method": "POST", "header": [], "body": { "mode": "raw", "raw": "{\r\n \"title\": \"This tutorial will help you become the best\",\r\n \"content\": \"This tutorial is the best\"\r\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "http://localhost:8000/api/todos", "protocol": "http", "host": [ "localhost" ], "port": "8000", "path": [ "api", "todos" ] } }, "response": [] }, { "name": "Get Todo", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8000/api/todos/24de5130-ae59-4c61-b613-019800870170", "protocol": "http", "host": [ "localhost" ], "port": "8000", "path": [ "api", "todos", "24de5130-ae59-4c61-b613-019800870170" ] } }, "response": [] }, { "name": "Health Checker", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8000/api/healthchecker", "protocol": "http", "host": [ "localhost" ], "port": "8000", "path": [ "api", "healthchecker" ] } }, "response": [] }, { "name": "Update Todo", "request": { "method": "PATCH", "header": [], "body": { "mode": "raw", "raw": "{\r\n \"title\": \"Updated My first 1 demo post always\",\r\n \"content\": \"Hello\"\r\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "http://localhost:8000/api/todos/24de5130-ae59-4c61-b613-019800870170", "protocol": "http", "host": [ "localhost" ], "port": "8000", "path": [ "api", "todos", "24de5130-ae59-4c61-b613-019800870170" ] } }, "response": [] }, { "name": "Delete Todo", "request": { "method": "DELETE", "header": [], "url": { "raw": "http://localhost:8000/api/todos/null", "protocol": "http", "host": [ "localhost" ], "port": "8000", "path": [ "api", "todos", "null" ] } }, "response": [] }, { "name": "Get All Todos", "request": { "method": "GET", "header": [], "url": { "raw": "http://localhost:8000/api/todos?page=1&limit=10", "protocol": "http", "host": [ "localhost" ], "port": "8000", "path": [ "api", "todos" ], "query": [ { "key": "page", "value": "1" }, { "key": "limit", "value": "10" } ] } }, "response": [] } ] }