0

Delete an explicit group permission for a project

by
Published Oct 24, 2023

Deletes the project group permission between the requested project and group, if one exists. Only users with admin permission for the project may access this resource.

Script bitbucket Verified

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 398 days ago
1
type Bitbucket = {
2
  username: string;
3
  password: string;
4
};
5
/**
6
 * Delete an explicit group permission for a project
7
 * Deletes the project group permission between the requested project and group, if one exists.
8

9
Only users with admin permission for the project may access this resource.
10
 */
11
export async function main(
12
  auth: Bitbucket,
13
  group_slug: string,
14
  project_key: string,
15
  workspace: string
16
) {
17
  const url = new URL(
18
    `https://api.bitbucket.org/2.0/workspaces/${workspace}/projects/${project_key}/permissions-config/groups/${group_slug}`
19
  );
20

21
  const response = await fetch(url, {
22
    method: "DELETE",
23
    headers: {
24
      Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
25
    },
26
    body: undefined,
27
  });
28
  if (!response.ok) {
29
    const text = await response.text();
30
    throw new Error(`${response.status} ${text}`);
31
  }
32
  return await response.text();
33
}
34