...
- current_user:
- id
- key
- name (default)
- ull_name
- email_domain
Custom Field Values
...
Single Value types
- Date (should be treated as dates in our date column types)
- Date Picker
- Date Time Picker
- Numeric (should be treated as dates in our date column types)
- Number Field
- All other custom fields without a specific type should be handled the same way - get custom field value as a string
Multi-Value types
- Checkboxes
- Labels
- Radio Buttons
- Select List (cascading)
- Select List (multiple choices)
- Group Picker (multiple groups)
- User Picker (multiple users)
- Version Picker (multiple versions)
Custom Field Values placeholders
customfield:{id}
example : customfield:12345
This placeholder will take a Custom Field value for Single Value types, and merge values into one separated by a comma for Multi-Value types
customfield:{id}:{'all' or the index of the value(all - is default value)}:{'name' or 'value'(name - is default)}
example :
- customfield:12345:all:value
- customfield:12345:all:name - will be treated like simple customfield:12345 since 'all' and 'name' are defaults
- customfield:12345:1:value
- customfield:12345:1:name - might be simple customfield:12345:1 since 'name' is a default
Selecting 'all' will merge values into one separated by a comma