POST
/
workspaces
/
{ws_id}
/
entities
curl --request POST \
  --url https://app.blinkops.com/api/v1/workspaces/{ws_id}/entities \
  --header 'BLINK-API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "entities": [
    {
      "entity_id": "<string>",
      "entity_type": "user",
      "name": "<string>",
      "role": "<string>"
    }
  ]
}'
This response has no body data.

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
Entity list
entities
object[]