//native
type Neondb = {
apiKey: string
}
/**
* Revoke project access
* Revokes project access from the user associted with the specified permisison `id`. You can retrieve a user's permission `id` by listing project access.
*/
export async function main(auth: Neondb, project_id: string, permission_id: string) {
const url = new URL(
`https://console.neon.tech/api/v2/projects/${project_id}/permissions/${permission_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