0

Delete a branch

by
Published Apr 8, 2025

Deletes the specified branch from a project, and places all compute endpoints into an idle state, breaking existing client connections.

Script neondb Verified

The script

Submitted by hugo697 Bun
Verified 428 days ago
1
//native
2
type Neondb = {
3
	apiKey: string
4
}
5
/**
6
 * Delete a branch
7
 * Deletes the specified branch from a project, and places
8
all compute endpoints into an idle state, breaking existing client connections.
9
 */
10
export async function main(auth: Neondb, project_id: string, branch_id: string) {
11
	const url = new URL(
12
		`https://console.neon.tech/api/v2/projects/${project_id}/branches/${branch_id}`
13
	)
14

15
	const response = await fetch(url, {
16
		method: 'DELETE',
17
		headers: {
18
			Authorization: 'Bearer ' + auth.apiKey
19
		},
20
		body: undefined
21
	})
22
	if (!response.ok) {
23
		const text = await response.text()
24
		throw new Error(`${response.status} ${text}`)
25
	}
26
	return await response.json()
27
}
28