Clarify API
Schemas

Add object fields

Adds one or more non-relationship fields to an object type. Each key in `attributes` is a new field name mapped to its JSON Schema. Fields that already exist are rejected — this endpoint never overwrites. The change is applied asynchronously and the response body is empty.

POST
/workspaces/{workspace}/schemas/{entity}/properties
Authorization<token>

API key authentication. Send your key in the Authorization header as: api-key <your-api-key>.

In: header

Path Parameters

workspace*string

The workspace slug — the {slug} segment of your Clarify workspace URL.

entity*string

The object type: a built-in entity (person, company, deal, …) or a custom object (c_*).

Query Parameters

silent?boolean

When true, suppresses in-app and Slack notifications for this mutation.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/workspaces/string/schemas/string/properties" \  -H "Content-Type: application/json" \  -d '{    "data": {      "type": "schema-properties",      "attributes": {        "budget": {          "type": [            "number",            "null"          ],          "title": "Budget"        }      }    }  }'
{}