//native
type Neondb = {
apiKey: string
}
/**
* Update the role for an organization member
* Only an admin can perform this action.
*/
export async function main(
auth: Neondb,
org_id: string,
member_id: string,
body: { role: 'admin' | 'member' }
) {
const url = new URL(
`https://console.neon.tech/api/v2/organizations/${org_id}/members/${member_id}`
)
const response = await fetch(url, {
method: 'PATCH',
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