---
title: "Create Employee"
method: POST
path: "/employee"
tags: ["Employee"]
---

# Create Employee

`POST /employee`

Create a new employee

## Query parameters

- `select` string

## Request body

- Employee
  - `id` string, uuid — Employee ID
  - `created_at` string, timestamp with time zone — Employee creation date
  - `updated_at` string, timestamp with time zone — Latest update
  - `organisation_id` string, uuid — Organisation ID
  - `user_id` string, uuid, nullable — User ID
  - `is_admin` boolean, nullable — Is employee an admin?
  - `username` string, text — Name of employee
  - `signature` string, text, nullable — Signature of employee
  - `full_name` string, text, nullable — Name of employee
  - `email` string, text, nullable — Email of employee
  - `display_name` string, text — Displayed name of the employee in the Mateo app

## Response `200`

The updated Employee object

- Employee
  - `id` string, uuid — Employee ID
  - `created_at` string, timestamp with time zone — Employee creation date
  - `updated_at` string, timestamp with time zone — Latest update
  - `organisation_id` string, uuid — Organisation ID
  - `user_id` string, uuid, nullable — User ID
  - `is_admin` boolean, nullable — Is employee an admin?
  - `username` string, text — Name of employee
  - `signature` string, text, nullable — Signature of employee
  - `full_name` string, text, nullable — Name of employee
  - `email` string, text, nullable — Email of employee
  - `display_name` string, text — Displayed name of the employee in the Mateo app

## Other responses

- `201` — The Employee was created
- `204` — No Content

---

[API](https://skmtc.net/getmateo/apis/mateo-api.md) · [All operations](https://skmtc.net/getmateo/apis/mateo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getmateo/mateo-api/versions/96e99eb80199/schema)
