Get an organization
One script reply has been approved by the moderators Verified

To see many of the organization response values, you need to be an authenticated organization owner with the admin:org scope.

Created by hugo697 864 days ago
Submitted by hugo697 Typescript (fetch-only)
Verified 304 days ago
1
type Github = {
2
  token: string;
3
};
4
/**
5
 * Get an organization
6
 * To see many of the organization response values, you need to be an authenticated organization owner with the `admin:org` scope.
7
 */
8
export async function main(auth: Github, org: string) {
9
  const url = new URL(`https://api.github.com/orgs/${org}`);
10

11
  const response = await fetch(url, {
12
    method: "GET",
13
    headers: {
14
      Authorization: "Bearer " + auth.token,
15
    },
16
    body: undefined,
17
  });
18
  if (!response.ok) {
19
    const text = await response.text();
20
    throw new Error(`${response.status} ${text}`);
21
  }
22
  return await response.json();
23
}
24