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

    ExposedTaskSend

    {
        "id": 0,
        "title": "string",
        "description": "string",
        "priority": "string",
        "status": "string",
        "creatorId": "string",
        "dueDate": "string"
    }
    Built with