0

Get data policy for projects (EAP)

by
Published Mar 6, 2024

Returns data policies for the projects specified in the request.

Script jira Verified

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 416 days ago
1
type Jira = {
2
  username: string;
3
  password: string;
4
  domain: string;
5
};
6
/**
7
 * Get data policy for projects (EAP)
8
 * Returns data policies for the projects specified in the request.
9
 */
10
export async function main(auth: Jira, ids: string | undefined) {
11
  const url = new URL(
12
    `https://${auth.domain}.atlassian.net/rest/api/3/data-policy/project`
13
  );
14
  for (const [k, v] of [["ids", ids]]) {
15
    if (v !== undefined && v !== "") {
16
      url.searchParams.append(k, v);
17
    }
18
  }
19
  const response = await fetch(url, {
20
    method: "GET",
21
    headers: {
22
      Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
23
    },
24
    body: undefined,
25
  });
26
  if (!response.ok) {
27
    const text = await response.text();
28
    throw new Error(`${response.status} ${text}`);
29
  }
30
  return await response.json();
31
}
32