Get transitions

Returns either all transitions or a transition that can be performed by the user on an issue, based on the issue's status.

Script jira Verified

by hugo697 ยท 11/2/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 396 days ago
1
type Jira = {
2
  username: string;
3
  password: string;
4
  domain: string;
5
};
6
/**
7
 * Get transitions
8
 * Returns either all transitions or a transition that can be performed by the user on an issue, based on the issue's status.
9
 */
10
export async function main(
11
  auth: Jira,
12
  issueIdOrKey: string,
13
  expand: string | undefined,
14
  transitionId: string | undefined,
15
  skipRemoteOnlyCondition: string | undefined,
16
  includeUnavailableTransitions: string | undefined,
17
  sortByOpsBarAndStatus: string | undefined
18
) {
19
  const url = new URL(
20
    `https://${auth.domain}.atlassian.net/rest/api/2/issue/${issueIdOrKey}/transitions`
21
  );
22
  for (const [k, v] of [
23
    ["expand", expand],
24
    ["transitionId", transitionId],
25
    ["skipRemoteOnlyCondition", skipRemoteOnlyCondition],
26
    ["includeUnavailableTransitions", includeUnavailableTransitions],
27
    ["sortByOpsBarAndStatus", sortByOpsBarAndStatus],
28
  ]) {
29
    if (v !== undefined && v !== "") {
30
      url.searchParams.append(k, v);
31
    }
32
  }
33
  const response = await fetch(url, {
34
    method: "GET",
35
    headers: {
36
      Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
37
    },
38
    body: undefined,
39
  });
40
  if (!response.ok) {
41
    const text = await response.text();
42
    throw new Error(`${response.status} ${text}`);
43
  }
44
  return await response.json();
45
}
46