Endpoints
Employees
Manage the people in your organisation.
List employees
GET /v1/employees
Returns a paginated list.
{
"data": [
{ "id": "emp_01", "name": "Asha Rao", "department": "Design", "status": "active" }
],
"has_more": false
}
Create an employee
POST /v1/employees
| Field | Type | Required | | --- | --- | --- | | name | string | yes | | email | string | yes | | department | string | no |