Edits history of script submission #12696 for ' Grant project access (neondb)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Neondb = {
    	apiKey: string
    }
    /**
     * Grant project access
     * Grants project access to the account associated with the specified email address
     */
    export async function main(auth: Neondb, project_id: string, body: { email: string }) {
    	const url = new URL(`https://console.neon.tech/api/v2/projects/${project_id}/permissions`)
    
    	const response = await fetch(url, {
    		method: 'POST',
    		headers: {
    			'Content-Type': 'application/json',
    			Authorization: 'Bearer ' + auth.apiKey
    		},
    		body: JSON.stringify(body)
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.json()
    }
    

    Submitted by hugo697 428 days ago