Workflows
Set new custom field values
Set new custom field values on a given entity.
🔒 Requires: custom_fields:write scope
post/workflows/custom_fields/values
Request body
Example request
{
"values": [
{
"name": "my_custom_field",
"string_value": "spec-test-value"
}
]
}Response
A list of all the custom field values associated with the entity.
Example response
{
"data": [
{
"definition_id": "1239349157873029120",
"name": "my_custom_field",
"title": "My Custom Field"
}
]
}