Create a custom field in Jira.
1 2acli jira field create [flags]
1 2# Create a text field $ acli jira field create --name "Customer Name" --type "com.atlassian.jira.plugin.system.customfieldtypes:textfield" # Create a select field with searcher $ acli jira field create --name "Priority Level" --type "com.atlassian.jira.plugin.system.customfieldtypes:select" --searcherKey "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher" # Create a field with description $ acli jira field create --name "Release Date" --type "com.atlassian.jira.plugin.system.customfieldtypes:datepicker" --description "The planned release date for this feature"
1 2--description string Description of the custom field -h, --help Show help for command --json Output in JSON format --name string Name of the custom field --searcherKey string Searcher key for the custom field --type string Type of the custom field
Rate this page: