v1

latestOpenAPI 3.0.0proprietary2026-07-261695971.5 MB
Custom Property

List Custom Properties

Returns all custom properties for the organization. Results are paginated using cursor-based pagination. Supports filtering by workspace and type.

get/custom_properties

Query parameters

workspace_idstring uuid

The unique identifier for a resource.

Example:9a93d3b5-fb3b-4abf-9e70-26315b33506c

Filter properties applicable to a specific workspace. Returns org-wide properties plus properties scoped to the specified workspace.

type'text' | 'list'
Example:text

Filter by field type.

limitinteger

The limit of items count to retrieve.

afterstring

After cursor (pagination)

Response

OK

next_cursorstring nullable

Cursor for the next page. Null if no more pages available.

Example response

{
  "data": [
    {
      "id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
      "name": "Department",
      "type": "text",
      "value": "Marketing"
    }
  ]
}