Syntax
getCustomField(customfieldId)
Description
Gets all information about the custom field. Routine returns a JCustomField structure type.
Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
customfieldId | String | Yes | ID of the custom field to retrieve information for. |
Return type
Example
JCustomField field = getCustomField("customfield_12345"); runnerLog(field.id); runnerLog(field.name); runnerLog(field.description); runnerLog(field.type); |