v1

latestOpenAPI 3.1.02026-07-26189891.1 MB
Members

Update a member

Updates all the fields described in the request body of the specified member. Creates a member if the member doesn't exist already. Fields left out of the body will remain unaffected.

put/v1/config/members/{email}

Path parameters

emailstring required

Email of a member

Example:testemail@gmail.com

Request body

role'owner' | 'admin' | 'readonly' | 'member'

role of member. Owner shall not be created or set through api

groupsRbacGroupId[]

Example request

{
  "role": "member"
}

Response

The update was successful; the member resource is returned with updated fields.

emailstring

Email of a member

role'owner' | 'admin' | 'readonly' | 'member'

role of member. Owner shall not be created or set through api

groupsRbacGroupId[]

Example response

{
  "email": "testemail@gmail.com",
  "role": "member"
}