Python
from everos import EverOS client = EverOS() groups = client.v1.groups response = groups.patch( "<string>", name="<string>", description="<string>" ) print(response)
{ "data": { "group_id": "<string>", "created_at": "<string>", "updated_at": "<string>", "name": "<string>", "description": "<string>" } }
Partially update a group’s fields. At least one of name or description must be provided.
Bearer authentication header of the form Bearer 'api_key', obtain your API key from everos.evermind.ai.
Group identifier
New group display name
New group description
Group updated successfully
Show child attributes