Deletes a custom field option.
1
type Jira = {
2
username: string;
3
password: string;
4
domain: string;
5
};
6
/**
7
* Delete custom field options (context)
8
* Deletes a custom field option.
9
*/
10
export async function main(
11
auth: Jira,
12
fieldId: string,
13
contextId: string,
14
optionId: string
15
) {
16
const url = new URL(
17
`https://${auth.domain}.atlassian.net/rest/api/2/field/${fieldId}/context/${contextId}/option/${optionId}`
18
);
19
20
const response = await fetch(url, {
21
method: "DELETE",
22
headers: {
23
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
24
},
25
body: undefined,
26
});
27
if (!response.ok) {
28
const text = await response.text();
29
throw new Error(`${response.status} ${text}`);
30
}
31
return await response.text();
32
33