Get interaction restrictions for an organization

Shows which type of GitHub user can interact with this organization and when the restriction expires. If there is no restrictions, you will see an empty response.

Script github Verified

by hugo697 ยท 10/25/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 366 days ago
1
type Github = {
2
  token: string;
3
};
4
/**
5
 * Get interaction restrictions for an organization
6
 * Shows which type of GitHub user can interact with this organization and when the restriction expires. If there is no restrictions, you will see an empty response.
7
 */
8
export async function main(auth: Github, org: string) {
9
  const url = new URL(`https://api.github.com/orgs/${org}/interaction-limits`);
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