Edits history of script submission #12664 for ' Delete a project (neondb)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Neondb = {
    	apiKey: string
    }
    /**
     * Delete a project
     * Deletes the specified project.
    You can obtain a `project_id` by listing the projects for your Neon account.
    Deleting a project is a permanent action.
    Deleting a project also deletes endpoints, branches, databases, and users that belong to the project.
    
     */
    export async function main(auth: Neondb, project_id: string) {
    	const url = new URL(`https://console.neon.tech/api/v2/projects/${project_id}`)
    
    	const response = await fetch(url, {
    		method: 'DELETE',
    		headers: {
    			Authorization: 'Bearer ' + auth.apiKey
    		},
    		body: undefined
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.json()
    }
    

    Submitted by hugo697 428 days ago