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

      GET
      /tasks

      Request

      Cookie Params

      Body Params application/jsonRequired

      Examples

      Responses

      🟢200Ok
      application/json
      Created
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://commtasks.raphdf201.net/tasks' \
      --header 'Cookie: techTaskManager=' \
      --header 'Content-Type: application/json' \
      --data-raw '{}'
      Response Response Example
      [
          {
              "id": 4,
              "title": "Test1",
              "description": "d1",
              "priority": "medium",
              "status": "in_progress",
              "creatorId": "108435062937712563528",
              "dueDate": "1231-02-03"
          }
      ]
      Modified at 2025-11-09 02:35:10
      Previous
      /isLoggedIn
      Next
      ExposedUser
      Built with