---
title: "Update Employee"
method: PATCH
path: "/employee"
tags: ["Employee"]
---

# Update Employee

`PATCH /employee`

Update an existing employee

## Query parameters

- `select` string
- `id` string, required
- `created_at` string
- `updated_at` string
- `organisation_id` string
- `user_id` string
- `is_admin` string
- `username` string
- `signature` string
- `full_name` string
- `email` string
- `display_name` 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

- `204` — No Content

---

[API](https://skmtc.dev/getmateo/apis/mateo-api.md) · [All operations](https://skmtc.dev/getmateo/apis/mateo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getmateo/mateo-api/revisions/22a9b3b009d1/schema)
