Skip to content

Function: setIssueTypeProperty()

ts
function setIssueTypeProperty(client, parameters): Promise<void>;

Defined in: src/cloud/api/issueTypeProperties.ts:70

Creates or updates the value of the issue type property. Use this resource to store and update data against an issue type.

The value of the request body must be a valid, non-empty JSON blob. The maximum length is 32768 characters.

Permissions required:Administer Jira global permission.

Parameters

ParameterTypeDescription
clientClient-
parameters{ body: Record<string, any>; issueTypeId: string; propertyKey: string; }-
parameters.bodyRecord<string, any>-
parameters.issueTypeIdstringThe ID of the issue type.
parameters.propertyKeystringThe key of the issue type property. The maximum length is 255 characters.

Returns

Promise<void>