list_ai_actions
Retrieve and filter AI actions (prompts) by owner type or workspace ID within the Carbon Voice platform. Supports user, workspace, and system-level filtering for targeted results.
Instructions
List AI Actions (Prompts). Optionally, you can filter by owner type and workspace id. Filtering by owner type, Possible values: "user", "workspace", "system". Do not use unless the user explicitly requests it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner_type | No | ||
workspace_id | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner_type": {
"enum": [
"user",
"workspace",
"system"
],
"type": "string"
},
"workspace_id": {
"type": "string"
}
},
"type": "object"
}