Create Organization

You must provide a unique `name` for each organization. Normally the system doesn't allow records to be created with identical names. However, a race condition can occur if you make two or more identical POSTs very close to each other, causing the records to have identical organization names. #### Allowed For * Admins * Agents assigned to a custom role with permissions to manage organizations (Enterprise only)

Script zendesk Verified

by hugo697 ยท 11/7/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 377 days ago
1
type Zendesk = {
2
  username: string;
3
  password: string;
4
  subdomain: string;
5
};
6
/**
7
 * Create Organization
8
 * You must provide a unique `name` for each organization. Normally
9
the system doesn't allow records to be created with identical names.
10
However, a race condition can occur if you make two or more identical
11
POSTs very close to each other, causing the records to have identical
12
organization names.
13

14
#### Allowed For
15

16
* Admins
17
* Agents assigned to a custom role with permissions to manage organizations (Enterprise only)
18

19
 */
20
export async function main(auth: Zendesk) {
21
  const url = new URL(
22
    `https://${auth.subdomain}.zendesk.com/api/v2/organizations`
23
  );
24

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