> ## Documentation Index
> Fetch the complete documentation index at: https://www.edenai.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Patch managemembers role

> ``PATCH /v3/manage/members/{email}/role`` -- set a member's RBAC role. ``manage:write``,
org-scoped: the member must be a principal of the calling key's org (else 404). The org owner's
role is immutable. Audited (actor = the management key). Returns the updated member in the same
representation as GET /manage/members.



## OpenAPI

````yaml https://api.edenai.run/v2/info/splitted-schema/management_api/openapi.json patch /manage/members/{email}/role/
openapi: 3.0.3
info:
  title: Organization Management
  version: '2.0'
  description: Your project description
servers:
  - url: https://api.edenai.run/v3
security: []
paths:
  /manage/members/{email}/role/:
    patch:
      tags:
        - members
      description: >-
        ``PATCH /v3/manage/members/{email}/role`` -- set a member's RBAC role.
        ``manage:write``,

        org-scoped: the member must be a principal of the calling key's org
        (else 404). The org owner's

        role is immutable. Audited (actor = the management key). Returns the
        updated member in the same

        representation as GET /manage/members.
      operationId: manage_members_role_partial_update
      parameters:
        - in: path
          name: email
          schema:
            type: string
          required: true
      responses:
        '200':
          description: No response body

````