Update a column data transform config
- Type: integerentity
Id requiredID of Ai column data transform config
- Type: string enumai
Creativity Controls how expressive and varied the AI output language is; high allows more creative responses.
values- high
- medium
- low
- Type: string enumai
Voice Tone Determines the style and attitude in which the generated content is delivered.
values- auto
- professional
- technical
- casual
- straightforward
- confident
- friendly
- humorous
- inspirational
- Type: stringcolumn
Key Identifier of the custom field column this transform is applied to.
- Type: integercustom
Input Id ID of the custom field input (Field) this transform is bound to.
- Type: booleanenabled
Whether this column data transform is active and will be applied during processing.
- Type: stringmodule
System name of the module (e.g. contact, deal) that owns the column being transformed.
- Type: stringprompt
User-defined instruction sent to the AI to guide how the column value should be transformed.
- Type: string enumprovider
AI backend used for the transformation: platform = Boost.space built-in AI, websearch = web-augmented AI, custom = user-configured provider.
values- platform
- websearch
- custom
- Type: string enumtype
Specifies whether the AI transformation runs automatically on record change (auto) or only when triggered manually.
values- auto
- manual
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
curl https://test.boost.space/api/ai/column-data-transform/1 \
--request PUT \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{
"id": 42,
"columnKey": "string",
"module": "string",
"prompt": "string",
"enabled": true,
"provider": "platform",
"aiVoiceTone": "auto",
"aiCreativity": "high",
"customInputId": 42,
"type": "auto"
}'
{
"id": 42,
"columnKey": "string",
"module": "string",
"prompt": "string",
"enabled": true,
"provider": "platform",
"aiVoiceTone": "auto",
"aiCreativity": "high",
"customInputId": 42,
"type": "auto"
}