Update a tunnel route

Updates an existing private network route in an account. The fields that are meant to be updated should be provided in the body of the request.

Script cloudflare Verified

by hugo697 ยท 11/16/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 383 days ago
1
type Cloudflare = {
2
  token: string;
3
  email: string;
4
  key: string;
5
};
6
/**
7
 * Update a tunnel route
8
 * Updates an existing private network route in an account. The fields that are meant to be updated should be provided in the body of the request.
9
 */
10
export async function main(
11
  auth: Cloudflare,
12
  route_id: string,
13
  account_identifier: string,
14
  body: {
15
    comment?: string;
16
    network?: string;
17
    tun_type?: "cfd_tunnel" | "warp_connector" | "ip_sec" | "gre" | "cni";
18
    tunnel_id?: { [k: string]: unknown };
19
    virtual_network_id?: { [k: string]: unknown };
20
    [k: string]: unknown;
21
  }
22
) {
23
  const url = new URL(
24
    `https://api.cloudflare.com/client/v4/accounts/${account_identifier}/teamnet/routes/${route_id}`
25
  );
26

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