Task manager API
    Task manager API
    • /tasks
      POST
    • /users
      GET
    • /users/{id}
      GET
    • /users/{id}
      PUT
    • /tasks{id}
      PUT
    • /tasks/{id}
      GET
    • /tasks/{id}
      DELETE
    • /users/{id}
      DELETE
    • /login
      GET
    • /isLoggedIn
      GET
    • /tasks
      GET
    • Schemas
      • ExposedUser
      • ExposedTaskSend
      • ExposedTaskReceive

      /tasks

      POST
      /tasks

      Request

      Cookie Params

      Body Params application/jsonRequired

      Examples

      Responses

      🟢201Created
      application/json
      The task id
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      cURL
      curl --location --request POST 'https://commtasks.raphdf201.net/tasks' \
      --header 'Cookie: techTaskManager=' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "title": "Task name",
          "description": "task description",
          "dueDate": "2025-12-25",
          "status": "todo",
          "priority": "high",
          "creatorId": 1
      }'
      Response Response Example
      0
      Modified at 2025-11-09 02:35:10
      Next
      /users
      Built with