TalentOS API
Github
Talent OS
  1. Employees
  • 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
    • Get productivity leaderboard
      GET
    • Get recent activity
      GET
  • AI
    • AI HR assistant chat
      POST
    • Organization skill gap analysis
      GET
    • My personal skill gap analysis
      GET
    • Get daily AI insight
      GET
    • Smart task assignment recommendation
      POST
    • Extract skills from resume PDF
      POST
  • Schemas
    • CreateEmployeeRequest
    • UpdateEmployeeRequest
    • CreateTaskRequest
    • UpdateTaskRequest
    • AuthResponse
    • Employee
    • Task
Github
Talent OS
  1. Employees

Create a new employee

POST
/employees
Creates a new employee in the organization. Admin only.
A random password is auto-generated and hashed
A welcome email is sent with login credentials (if Resend is configured)
The employee can then log in at /auth/employee-login

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Body Params application/jsonRequired

Example
{
    "name": "Jane Smith",
    "email": "emp1@org.com",
    "role": "Frontend Engineer",
    "department": "Engineering",
    "skills": [
        "React",
        "TypeScript",
        "Tailwind CSS"
    ],
    "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD38"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/employees' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Jane Smith",
    "email": "emp1@org.com",
    "role": "Frontend Engineer",
    "department": "Engineering",
    "skills": [
        "React",
        "TypeScript",
        "Tailwind CSS"
    ],
    "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD38"
}'

Responses

🟢201
application/json
Employee created successfully
Body

Example
{
    "success": true,
    "data": {
        "id": "cm5emp001",
        "orgId": "cm5abc123def456",
        "name": "Jane Smith",
        "email": "emp1@org.com",
        "role": "Frontend Engineer",
        "department": "Engineering",
        "skills": [
            "React",
            "TypeScript",
            "Tailwind CSS"
        ],
        "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD38",
        "roleType": "EMPLOYEE",
        "isActive": true,
        "createdAt": "2026-02-20T10:30:00.000Z",
        "updatedAt": "2026-02-20T10:30:00.000Z"
    },
    "message": "Employee created successfully"
}
🟠409
🟠400ValidationError
Modified at 2026-02-22 18:59:05
Previous
List all employees
Next
Get my profile
Built with