ateam_conversation
Send messages to a deployed solution and continue multi-turn conversations. Auto-routes to the correct skill; pass actor_id to maintain context.
Instructions
Send a message to a deployed solution and get the result. No skill_id needed — the system auto-routes to the right skill. Supports multi-turn conversations: pass the actor_id from a previous response to continue the thread (e.g., reply to a confirmation prompt). Each call creates a new job but the same actor_id maintains conversation context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| solution_id | Yes | The solution ID | |
| message | Yes | The message to send (e.g., 'send email to X' or 'I confirm') | |
| actor_id | No | Optional: actor ID from a previous response to continue the conversation. Omit for a new conversation. | |
| wait | No | If true (default), wait for completion. If false, return job_id immediately for polling. | |
| timeout_ms | No | Optional: max wait time in ms (default: 60000, max: 300000). |