run_ai_action_for_shared_link
Execute AI-driven actions on shared links by specifying their IDs, enabling automated processing and response generation in preferred languages.
Instructions
Run an AI Action (Prompt) for a shared link. You can run an AI Action for a shared link by its ID or a list of shared link IDs. You can also provide the language of the response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ||
prompt_id | Yes | ||
share_link_ids | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"type": "string"
},
"prompt_id": {
"type": "string"
},
"share_link_ids": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"prompt_id",
"share_link_ids"
],
"type": "object"
}