Dashboard Conversation
Open an agent in the dashboard and use the Conversation panel to talk to it in the browser. It runs your published agent (the latest published version), so it is the quickest way to sanity-check a version right after you ship it. While you are still building, you can also chat the draft to test unpublished changes before you publish. See Agents and Publishing and versions.Public invoke endpoint
Every published agent exposes a public invoke endpoint. You send the user’s message as plain text and get JSON back.- The path segment is the agent UUID, not the display name, so agents can share names safely.
- The version must be a published positive integer, not
draft. - Authenticate with an organization API key as a Bearer token.
- The
content-typeistext/plainand the body is the user’s message. - The response is a JSON object containing the agent’s output.
Continuing a conversation
The invoke endpoint is stateless: each call is a self-contained turn. To drive a multi-turn conversation with server-managed continuation state, use the lower-levelPOST /v1/turn route, which the dashboard and advanced integrations use. See Turn.