Generate a value for a custom field using AI

Generates a value for a custom field using AI based on the provided prompt and module context. Requires sufficient AI token balance.

Body
required
application/json
  • module
    Type: string | null

    Boost.space module identifier related to the tool execution.

  • prompt
    Type: string | null

    User-provided text prompt for the AI tool.

  • table
    Type: string | null

    Boost.space table identifier related to the tool execution.

Responses
  • application/json
  • 400

    Invalid input or unsupported type

  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/ai/generate-custom-field
curl https://test.boost.space/api/ai/generate-custom-field \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "prompt": null,
  "table": null,
  "module": null
}'
{
  "result": "string"
}