Custom Properties

Custom properties allow you to add custom fields to resources in your workspace. Learn more about custom properties here.

List Custom Properties

get
/api/v1/resource/all_v2/custom_properties/

Get all custom properties in the workspace.

Authorizations
Responses
200

OK

application/json
get
/api/v1/resource/all_v2/custom_properties/
200

OK

Create Custom Property

post
/api/v1/resource/all_v2/custom_properties/

Create a new custom property in the workspace.

Authorizations
Body
namestringRequired
entity_typesstring[]OptionalDefault: []
value_typestringRequired
Responses
200

OK

application/json
post
/api/v1/resource/all_v2/custom_properties/
200

OK

Get Custom Property

get
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/

Get details of a specific custom property.

Authorizations
Path parameters
custom_property_idstringRequired
Responses
200

OK

application/json
get
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/
200

OK

Update Custom Property

put
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/

Update an existing custom property.

Authorizations
Path parameters
custom_property_idstringRequired
Body
namestringRequired
entity_typesstring[]OptionalDefault: []
value_typestringRequired
Responses
200

OK

application/json
put
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/
200

OK

Delete Custom Property

delete
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/

Delete a custom property.

Authorizations
Path parameters
custom_property_idstringRequired
Responses
delete
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/
204

No Content

No content

Update Entity Custom Property Value

put
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/{entity_id}/

Update the value of a custom property for a specific entity.

Authorizations
Path parameters
custom_property_idstringRequired
entity_idstringRequired
Body
valuestringRequired
Responses
200

OK

application/json
put
/api/v1/resource/all_v2/custom_properties/{custom_property_id}/{entity_id}/
200

OK

Bulk Update Entity Custom Properties

put
/api/v1/resource/all_v2/bulk_update/custom_properties/

Update custom property values for multiple entities in a single request. To bulk delete custom property values, set their values to an empty string ("").

Authorizations
Body
entity_idsstring[]Required
Responses
200

OK

application/json
put
/api/v1/resource/all_v2/bulk_update/custom_properties/
200

OK

Last updated

Was this helpful?