Custom Fields
This is used to create the custom fields in the Item, Sprint, and Release. The custom fields will be available when the extension is installed in your Zoho Sprints application. And, they will be deleted automatically when you uninstall the extension. The fields will be available only when the extension is available. These are hidden fields and are used only for purpose of the extension.
Field types
Supported field types include:
Field Type | Value |
Text | text |
Text Area | textArea |
Multi User Pick List | multiUserPickList |
Single User Pick List | singleUserPickList |
Radio | radio |
Boolean | boolean |
Pick List | pickList |
Key | Type | Description | Value | Mandatory |
id | String |
|
| Yes |
displayName | String |
|
| Yes |
type | String |
|
| Yes |
Quick filters
The custom fields are also listed in the quick filter options of item, sprint, and release modules.
SNIPPET
{
"modules" : {
"customfields": {
"item": [{
"displayName": "Approvers",
"id": "field1",
"type": "multiUserPickList"
}],
"release": [{
"displayName": "Approvers",
"id": "field1",
"type": "multiUserPickList"
}],
"sprint": [{
"displayName": "Approvers",
"id": "field1",
"type": "multiUserPickList"
}]
}
}
}