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

    AuthResponse

    {
        "success": true,
        "data": {
            "token": "string",
            "organization": {
                "id": "string",
                "name": "string",
                "email": "string"
            }
        },
        "message": "string"
    }
    Built with