0
Create Bucket
One script reply has been approved by the moderators Verified

Creates a new R2 bucket.

Created by hugo697 174 days ago Viewed 5859 times
0
Submitted by hugo697 Typescript (fetch-only)
Verified 174 days ago
1
type Cloudflare = {
2
  token: string;
3
  email: string;
4
  key: string;
5
};
6
/**
7
 * Create Bucket
8
 * Creates a new R2 bucket.
9
 */
10
export async function main(
11
  auth: Cloudflare,
12
  account_identifier: string,
13
  body: {
14
    locationHint?: "apac" | "eeur" | "enam" | "weur" | "wnam";
15
    name: string;
16
    [k: string]: unknown;
17
  }
18
) {
19
  const url = new URL(
20
    `https://api.cloudflare.com/client/v4/accounts/${account_identifier}/r2/buckets`
21
  );
22

23
  const response = await fetch(url, {
24
    method: "POST",
25
    headers: {
26
      "X-AUTH-EMAIL": auth.email,
27
      "X-AUTH-KEY": auth.key,
28
      "Content-Type": "application/json",
29
      Authorization: "Bearer " + auth.token,
30
    },
31
    body: JSON.stringify(body),
32
  });
33
  if (!response.ok) {
34
    const text = await response.text();
35
    throw new Error(`${response.status} ${text}`);
36
  }
37
  return await response.json();
38
}
39