Data fields API

Define custom data fields for workflows and users

Available Endpoints

The Data Field Object

variable string

Variable name used in templates

data_path string

Path to the data within the structure

display_label string

Display label for the data type

format string

Format specification for the data type

groups array

Permission groups for this data type

list_values_variable string

Variable name for list values

object string

Object type identifier

required boolean

Whether this data type is required

source string

Source identifier for the data type

type string

Data type identifier

value string

Default or current value

Data Field Object
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "variable": "first_name",
  "data_path": "first_name",
  "display_label": "First Name",
  "format": null,
  "groups": null,
  "list_values_variable": null,
  "object": "data_type",
  "required": false,
  "source": "user",
  "type": "String",
  "value": "John"
}