---
title: "Create Client"
method: POST
path: "/api/integrations/zapier/triggers/clients"
tags: ["Zapier Integration", "Clients"]
---

# Create Client

`POST /api/integrations/zapier/triggers/clients`

Create a new client

## Request body

- object
  - `name` string, required
  - `type` 'individual' | 'company'
  - `status` 'active' | 'inactive'
  - `email` string, email
  - `phone` string
  - `address` string
  - `note` string
  - `currency` string
  - `workspace_id` string, uuid, required

## Response `201`

Client created successfully

- object
  - `id` string, uuid
  - `name` string
  - `type` string
  - `status` string
  - `email` string, nullable
  - `phone` string, nullable
  - `address` string, nullable
  - `note` string, nullable
  - `currency` string
  - `workspaces` object[]
    - `id` string, uuid
    - `name` string
  - `projects` object[]
    - `id` string, uuid
    - `name` string
    - `status` string
    - `workspace_id` string, uuid
    - `workspace_name` string
  - `project_count` integer
  - `workspace_count` integer
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `400` — Bad request - Invalid data
- `401` — Authentication failed
- `500` — Internal server error

---

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