Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

Action Configuration search reference

You search for AI action configurations over the REST API, with the POST /ai/actions request.

The request payload takes the following search options:

Option Description
query Returns action configurations with a name that starts with the given string, or with exactly this identifier
action_type_identifier Returns action configurations of the given action type, for example alt_text_generation
enabled Returns enabled (true) or disabled (false) action configurations
limit Maximum number of action configurations to return
page Number of the page of results to return, starting from 1

Results are sorted by action configuration ID, in descending order.

Example

1
2
3
4
5
6
7
8
9
{
    "ActionConfigurationListInput": {
        "query": "alt",
        "action_type_identifier": "alt_text_generation",
        "enabled": true,
        "limit": 10,
        "page": 1
    }
}