Skip to main content
POST
/
workspace
/
{ws_id}
/
table
/
sys_groups
Create group
curl --request POST \
  --url https://app.blinkops.com/api/v1/workspace/{ws_id}/table/sys_groups \
  --header 'BLINK-API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "my team'\''s group",
  "managed": true,
  "name": "my group"
}'
{
  "created_at": 123,
  "created_by": "<string>",
  "description": "<string>",
  "id": "<string>",
  "managed": true,
  "name": "<string>",
  "tenant_id": "<string>",
  "updated_at": 123,
  "updated_by": "<string>"
}

Authorizations

Use your API key to access BlinkOps API. To generate an API key, please log in to your BlinkOps account and navigate to the API Keys section in the user settings page. Add the generated key to your request headers as BLINK-API-KEY.

Path Parameters

ws_id
string
required

Workspace ID

Body

application/json

Group details

description
string
Example:

"my team's group"

managed
boolean
Example:

true

name
string
Example:

"my group"

Response

OK

created_at
integer
created_by
string
description
string
id
string
managed
boolean
name
string
tenant_id
string
updated_at
integer
updated_by
string