TalentOS API
Github
Talent OS
    • Auth
      • Register a new organization
        POST
      • Login as organization admin
        POST
      • Login as employee
        POST
      • Change employee password
        POST
    • Employees
      • List all employees
        GET
      • Create a new employee
        POST
      • Get my profile
        GET
      • Get my productivity score
        GET
      • Get employee by ID
        GET
      • Update employee
        PUT
      • Delete employee
        DELETE
      • Get employee productivity score
        GET
    • Tasks
      • List all tasks
        GET
      • Create a new task
        POST
      • Get my tasks
        GET
      • Get task by ID
        GET
      • Update task
        PUT
      • Delete task
        DELETE
      • Update task status
        PATCH
      • Update task transaction hash
        PATCH
    • Dashboard
      • Get dashboard statistics
      • Get productivity leaderboard
      • Get recent activity
    • AI
      • AI HR assistant chat
      • Organization skill gap analysis
      • My personal skill gap analysis
      • Get daily AI insight
      • Smart task assignment recommendation
      • Extract skills from resume PDF
    • Schemas
      • CreateEmployeeRequest
      • UpdateEmployeeRequest
      • CreateTaskRequest
      • UpdateTaskRequest
      • AuthResponse
      • Employee
      • Task
    Github
    Talent OS

    Task

    {
        "id": "string",
        "orgId": "string",
        "employeeId": "string",
        "title": "string",
        "description": "string",
        "status": "TODO",
        "priority": "LOW",
        "deadline": "2019-08-24T14:15:22.123Z",
        "completedAt": "2019-08-24T14:15:22.123Z",
        "txHash": "string",
        "skillRequired": "string",
        "createdAt": "2019-08-24T14:15:22.123Z",
        "updatedAt": "2019-08-24T14:15:22.123Z"
    }
    Built with