POST
/
workspace
/
{ws_id}
/
table
/
sys_groups
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
managed
boolean
name
string

Response

200
application/json
OK
created_at
integer
created_by
string
description
string
id
string
managed
boolean
name
string
tenant_id
string
updated_at
integer
updated_by
string