Tasks
Create Task
Create a new task for the authenticated user
POST
This endpoint requires implementation in the backend. Documentation reflects the expected API design based on the Task model schema.
Authentication
This endpoint requires a valid JWT token in the Authorization header.Request Body
The title of the task
Optional description of the task
Whether the task is completed. Defaults to false if not provided.
Response
The unique identifier for the task
The title of the task
The description of the task (null if not provided)
Whether the task is completed
The ID of the user who owns this task