Python
from everos import EverOS client = EverOS() groups = client.v1.groups response = groups.create( group_id="<string>", name="<string>", description="<string>" ) print(response)
{ "data": { "group_id": "<string>", "created_at": "<string>", "updated_at": "<string>", "name": "<string>", "description": "<string>" } }
Create a new group or update an existing one (upsert by group_id).
Bearer authentication header of the form Bearer 'api_key', obtain your API key from everos.evermind.ai.
Group identifier (unique)
"group_abc"
Group display name
"Project Discussion"
Group description
"Weekly sync on Project X"
Group created/updated successfully
Show child attributes