OptionalcontextId?: number[]The IDs of the contexts to return default values for. If omitted, default values for every context the custom field has are returned.
The ID of the custom field, for example customfield\_10000.
OptionalissueTypeId?: string[]The IDs of the issue types to restrict the returned per-issue-type default values to. If omitted, default values
for every issue type are returned. This filter never removes the catch-all isAnyIssueType entry of a context.
OptionalmaxResults?: numberThe maximum number of items to return per page.
OptionalstartAt?: numberThe index of the first item to return in a page of results (page offset).
Optionaloptions: RequestOptions
Returns a paginated list of default values grouped by custom field context.
Each returned
ContextDefaultValuesBeanhas acontextIdand adefaultValueslist ofIssueTypeDefaultValueBeanentries - one per issue-type-scoped default value configured for the context. An entry with"isAnyIssueType": truerepresents the catch-all default that applies to every issue type covered by the context that is not covered by a more specific entry; a non-nullissueTypeIdrepresents a default that only applies to that issue type.For contexts that have not been converted to the multiple-contexts data model, exactly one entry is returned per context with
isAnyIssueType=true. For converted contexts, one entry is returned per configured per-issue-type default.The value object on each entry is the same polymorphic
CustomFieldContextDefaultValueBeanexposed by the deprecatedGET /defaultValueendpoint - its concrete subtype depends on the custom field's type (see the list of supported types on that endpoint).Permissions required: Administer Jira global permission.