Skip to main content
PUT
/
workspace
/
{ws_id}
/
case_management
/
table
/
{table}
/
fields
/
{field}
Update Field for Case Management Table
curl --request PUT \
  --url https://app.blinkops.com/api/v1/workspace/{ws_id}/case_management/table/{table}/fields/{field} \
  --header 'BLINK-API-KEY: <api-key>' \
  --header 'Content-Type: */*' \
  --data '{
  "attributes": {
    "default_value": "Default",
    "include_time": false,
    "options": [
      "Option 1",
      "Option 2",
      "Option 3"
    ],
    "table_reference": {
      "table_name": "Table 1",
      "display_name_field": "Name"
    }
  },
  "display_name": "Test",
  "type": "single-select"
}'
{
  "attributes": {},
  "created_at": 123,
  "created_by": "<string>",
  "description": "<string>",
  "display_name": "<string>",
  "id": "<string>",
  "indexes": {},
  "name": "<string>",
  "table_id": "<string>",
  "tenant_id": "<string>",
  "type": "<string>",
  "updated_at": 123,
  "updated_by": "<string>",
  "workspace_id": "<string>"
}

Authorizations

Path Parameters

ws_id
string
required
table
string
required
field
string
required

Body

*/*
attributes
object
display_name
string
Example:
type
enum<string>
Available options:
text,
long-text,
number,
risk-level,
checkbox,
single-select,
multi-select,
list,
reference,
date
Example:

Response

attributes
object
created_at
integer
created_by
string
description
string
display_name
string
id
string
indexes
object
name
string
table_id
string
tenant_id
string
type
string
updated_at
integer
updated_by
string
workspace_id
string