Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/jira/src/version3/parameters/getCustomFieldConfiguration.ts>GetCustomFieldConfiguration

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Latest
interface GetCustomFieldConfiguration
import { type GetCustomFieldConfiguration } from "https://deno.land/x/jira@v3.0.2/src/version3/parameters/getCustomFieldConfiguration.ts";

Properties

fieldIdOrKey: string

The ID or key of the custom field, for example customfield_10000.

optional
id: number[]

The list of configuration IDs. To include multiple configurations, separate IDs with an ampersand: id=10000&id=10001. Can't be provided with fieldContextId, issueId, projectKeyOrId, or issueTypeId.

optional
fieldContextId: number[]

The list of field context IDs. To include multiple field contexts, separate IDs with an ampersand: fieldContextId=10000&fieldContextId=10001. Can't be provided with id, issueId, projectKeyOrId, or issueTypeId.

optional
issueId: number

The ID of the issue to filter results by. If the issue doesn't exist, an empty list is returned. Can't be provided with projectKeyOrId, or issueTypeId.

optional
projectKeyOrId: string

The ID or key of the project to filter results by. Must be provided with issueTypeId. Can't be provided with issueId.

optional
issueTypeId: string

The ID of the issue type to filter results by. Must be provided with projectKeyOrId. Can't be provided with issueId.

optional
startAt: number

The index of the first item to return in a page of results (page offset).

optional
maxResults: number

The maximum number of items to return per page.