//native
type Neondb = {
apiKey: string
}
/**
* List project access
* Retrieves details about users who have access to the project, including the permission `id`, the granted-to email address, and the date project access was granted.
*/
export async function main(auth: Neondb, project_id: string) {
const url = new URL(`https://console.neon.tech/api/v2/projects/${project_id}/permissions`)
const response = await fetch(url, {
method: 'GET',
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