Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 5.61 KB

File metadata and controls

13 lines (10 loc) · 5.61 KB

CustomFieldDefinition

Fields

Field Type Required Description Example
id JsonNullable<String> Unique identifier 8187e5da-dc77-475e-9949-af0f1fa4e4e3
remoteId JsonNullable<String> Provider's unique identifier 8187e5da-dc77-475e-9949-af0f1fa4e4e3
name JsonNullable<String> N/A
description JsonNullable<String> N/A
type JsonNullable<CustomFieldDefinitionType> The type of the custom field. Dropdown
options List<CustomFieldOption> An array of possible options for the custom field. [
{
"id": "option_1",
"value": "Not Started"
},
{
"id": "option_2",
"value": "In Progress"
},
{
"id": "option_3",
"value": "Completed"
}
]