Skip to main content
POST
/
api
/
v1
/
groups
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>"
  }
}

Authorizations

Authorization
string
header
default:Bearer <api_key>
required

Bearer authentication header of the form Bearer 'api_key', obtain your API key from everos.evermind.ai.

Body

application/json
group_id
string
required

Group identifier (unique)

Example:

"group_abc"

name
string | null

Group display name

Example:

"Project Discussion"

description
string | null

Group description

Example:

"Weekly sync on Project X"

Response

Group created/updated successfully

data
object