Update member role
PUT
/api/v1/organizations/{orgId}/members/{userId}/role
const url = 'http://localhost:3000/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/members/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/role';const options = { method: 'PUT', headers: {'X-API-Key': '<X-API-Key>', 'Content-Type': 'application/json'}, body: '{"roleId":"550e8400-e29b-41d4-a716-446655440002"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url http://localhost:3000/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/members/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/role \ --header 'Content-Type: application/json' \ --header 'X-API-Key: <X-API-Key>' \ --data '{ "roleId": "550e8400-e29b-41d4-a716-446655440002" }'Updates a member’s role in the organization.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” orgId
required
string format: uuid
Organization UUID
userId
required
string format: uuid
User UUID
Request Body required
Section titled “Request Body required ” Media type application/json
object
roleId
required
New role UUID to assign to the user
string format: uuid
Example
550e8400-e29b-41d4-a716-446655440002Responses
Section titled “ Responses ”Member role updated successfully
Invalid input data
Unauthorized
Forbidden - Insufficient permissions
Member or role not found