provider custom_property_definitions PATCH /api/projects/{project_id}/custom_property_definitions/{id}/
@utdk/posthog /api/projects/{project_id}/custom_property_definitions/{id}/
custom_property_definitions_partial_update
id path required
string
project_id path required
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
string

Try it

Authentication
Configure credentials for PostHog API
customPropertyDefinitionsPartialUpdate
PATCH/api/projects/{project_id}/custom_property_definitions/{id}/

Parameters

required
required

Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.

Input

Human-readable name of the custom property. Unique within the team.

Optional description of what the property represents.

How the property is interpreted and rendered: 'text', 'number', 'currency', 'percent', 'date', 'datetime', 'boolean', or 'select'. * `text` - text * `number` - number * `currency` - currency * `percent` - percent * `date` - date * `datetime` - datetime * `boolean` - boolean * `select` - select

Abbreviate large numbers (e.g. 10,000 → 10K). Only applies to numeric properties.

For select properties: the allowed options. Required (non-empty) when display_type is 'select'; cleared server-side for other types.

The data-warehouse view-sync binding feeding this property, or null when values are set manually.

Workflows that use this property, resolved by definition id.

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import posthog from '@utdk/posthog';

await posthog.customPropertyDefinitionsPartialUpdate({
  "is_big_number": false
})