Skip to main content
POST
/
v2
/
orgs
/
{orgSlug}
/
groups
cURL
curl --request POST \
  --url https://api.eda.prisme.ai/v2/orgs/{orgSlug}/groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "slug": "<string>",
  "description": "<string>"
}
'
{
  "name": "<string>",
  "slug": "<string>",
  "id": "<string>",
  "orgSlug": "<string>",
  "description": "<string>",
  "memberCount": 123,
  "createdBy": "<string>",
  "updatedBy": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

orgSlug
string
required

Body

application/json
name
string
required
slug
string
required
description
string

Response

Group created

name
string
required
slug
string
required
id
string
orgSlug
string
description
string
memberCount
number
createdBy
string
updatedBy
string
createdAt
string
updatedAt
string