# Create a new client

Endpoint: POST /api/v1/clients
Version: 0.0.1
Security: user_session, form_session, component_session, component_token, api_token

## Request fields (application/json):

  - `name` (string, required)

  - `custom_attributes` (object)
    Record of custom attribute values keyed by string path.

## Response 201 fields (application/json):

  - `id` (string, required)
    Client Identifier

  - `name` (string, required)

  - `custom_attributes` (object, required)
    Record of custom attribute values keyed by string path.

  - `created_at` (string, required)
    a string to be decoded into a DateTime.Utc

  - `updated_at` (string, required)
    a string to be decoded into a DateTime.Utc

## Response 401 fields (application/json):

  - `message` (string, required)

  - `_tag` (string, required)
    Enum: "Unauthorized"

## Response 403 fields (application/json):

  - `message` (string, required)

  - `_tag` (string, required)
    Enum: "Forbidden"


