type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Get accessible project type by key
* Returns a [project type](https://confluence.atlassian.com/x/Var1Nw) if it is accessible to the user.
**[Permissions](#permissions) required:** Permission to access Jira.
*/
export async function main(
auth: Jira,
projectTypeKey: "software" | "service_desk" | "business" | "product_discovery"
) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/project/type/${projectTypeKey}/accessible`
);
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 396 days ago
type Jira = {
username: string;
password: string;
domain: string;
};
/**
* Get accessible project type by key
* Returns a [project type](https://confluence.atlassian.com/x/Var1Nw) if it is accessible to the user.
**[Permissions](#permissions) required:** Permission to access Jira.
*/
export async function main(
auth: Jira,
projectTypeKey: "software" | "service_desk" | "business" | "product_discovery"
) {
const url = new URL(
`https://${auth.domain}.atlassian.net/rest/api/2/project/type/${projectTypeKey}/accessible`
);
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 948 days ago