curl --request PATCH \
--url https://api.example.com/case-fields/{field_id} \
--header 'Content-Type: application/json' \
--cookie fastapiusersauth= \
--data '
{
"name": "<string>",
"type": "TEXT",
"nullable": true,
"default": "<unknown>",
"is_index": true
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Update a case field.
curl --request PATCH \
--url https://api.example.com/case-fields/{field_id} \
--header 'Content-Type: application/json' \
--cookie fastapiusersauth= \
--data '
{
"name": "<string>",
"type": "TEXT",
"nullable": true,
"default": "<unknown>",
"is_index": true
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Update a case field.
The name of the column
1 - 100The SQL type of the column
TEXT, INTEGER, NUMERIC, BOOLEAN, TIMESTAMP, TIMESTAMPTZ, JSONB, UUID 1 - 100Whether the column can be null
The default value of the column
Whether the column is an index
Successful Response
Was this page helpful?