Skip to main content
PATCH
/
organisations
/
current
/
members
/
{accountId}
Update a member role
const options = {
  method: 'PATCH',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({role: 'owner'})
};

fetch('https://api.prudra.dev/organisations/current/members/{accountId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

Documentation Index

Fetch the complete documentation index at: https://docs.prudra.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Prudra API key. Get one at dashboard.prudra.com/settings/api-keys

Path Parameters

accountId
string
required

Body

application/json
role
enum<string>
required
Available options:
owner,
admin,
member

Response

200

Member updated