Email SupportCall Us Go to Close

Custom Object Custom Fields


List all the Custom Object Custom Fields for your organization.

GET /custom_field/custom_object_type/

Create a new Custom Object Custom Field.

POST /custom_field/custom_object_type/

Custom Object Custom Fields belong to Custom Objects, and have additional attributes:

  • custom_object_type_id – the ID of the Custom Object Type this Field should belong to.
  • required – whether the Field will be required to save the object.

Fetch Custom Object Custom Field's details.

GET /custom_field/custom_object_type/{id}/

Update a Custom Object Custom Field.

PUT /custom_field/custom_object_type/{custom_field_id}/

You can rename it, change whether it accepts multiple values or not, change the "required" flag, change whether editing its values is restricted to specific Roles, or update the options for a "choices" field type. The updated name will immediately appear in the Close UI and only valid values for the updated type will be returned by the Custom Object API.

The custom_object_type_id and type values cannot be changed.

Delete a Custom Object Custom Field.

DELETE /custom_field/custom_object_type/{custom_field_id}/

The field will immediately disappear from any Custom Object API responses.