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
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { body: Record<string, any>; issueTypeId: string; propertyKey: string; } | - |
parameters.body | Record<string, any> | - |
parameters.issueTypeId | string | The ID of the issue type. |
parameters.propertyKey | string | The key of the issue type property. The maximum length is 255 characters. |
Returns
Promise<void>