To-Do Service API (KhushbuB)
Plan it - Track it - Get it done
Welcome to the To-Do Service API.
Use this API to manage tasks and onboard users with simple, easy-to-use endpoints.
What you can do
- Enroll new users
- Create new tasks
- Update or delete tasks
- Search tasks using keywords
Getting Started
- Start the server
- Send requests to
http://localhost:3000 - Use curl, Postman, or any API client to see how easy the To-Do Service is to use
API Endpoints
Tasks
- Get all tasks -
GET /tasks - Get a task by ID -
GET /tasks/{id} - Replace a task -
PUT /tasks/{id} - Delete a task -
DELETE /tasks/{id} - Search tasks -
GET /tasks?q= - Add a new task -
POST /tasks
Users
- Get all users -
GET /users - Get a user by ID -
GET /users/{id} - Enroll a new user -
POST /users
Learn more
References
Contact Us
Have questions, feedback, or found an issue?
- Mail: support@todoapi.dev
- Slack: #todo-api-support
- GitHub: To-Do Service Repository