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

      PUT
      /users/{id}

      Request

      Path Params

      Cookie Params

      Body Params application/jsonRequired

      Examples

      Responses

      🟢204No content
      This response does not have a body.
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request PUT 'https://commtasks.raphdf201.net/users/' \
      --header 'Cookie: techTaskManager=' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "id": "string",
          "name": "string",
          "profileIcon": "string"
      }'
      Modified at 2025-11-09 02:35:10
      Previous
      /users/{id}
      Next
      /tasks{id}
      Built with