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/{id}

      GET
      /tasks/{id}

      Request

      Path Params

      Cookie Params

      Responses

      🟢200Success
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://commtasks.raphdf201.net/tasks/' \
      --header 'Cookie: techTaskManager='
      Response Response Example
      {
          "id": 0,
          "title": "string",
          "description": "string",
          "priority": "string",
          "status": "string",
          "creatorId": "string",
          "dueDate": "string"
      }
      Modified at 2025-11-09 02:35:10
      Previous
      /tasks{id}
      Next
      /tasks/{id}
      Built with