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

      /users

      GET
      /users

      Request

      Cookie Params

      Responses

      🟢200Success
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://commtasks.raphdf201.net/users' \
      --header 'Cookie: techTaskManager='
      Response Response Example
      [
          {
              "id": "string",
              "name": "string",
              "profileIcon": "string"
          }
      ]
      Modified at 2025-11-09 02:35:10
      Previous
      /tasks
      Next
      /users/{id}
      Built with