
This guide walks you through exactly how to do it, step by step, with all the code you'll need.

By the end of this guide, you’ll have:
Before you start:



Go to Bots → Create Bot.
Name it Claude and give it any description of choice.
First, let's create a Message handler to handle the conversations first.
Click edit code and copy paste the below code in it (follow along the comments to understand what each part does)

One API endpoint. That's all.
Both the bot and the message action use the same single Anthropic endpoint: POST /v1/messages. The only thing that changes between them is the system prompt and what you put in the messages array. Once you understand that, the rest is just assembly.
Explore API docs →
Message Handler:
What does this do: Fetches last 10 (customizable - but keep message limit small ( around 10–15 to avoid token overuse)) chat messages for additional context and enables natural chat conversations
⚙️ Replace These Placeholders
BOT-UNIQUE-NAME (ⓘ How to find it?)
CONNECTION-NAME
INSERT-API-KEY-HERE

ⓘ For files, we've extended this to only PDF file formats for now to keep implementation predictable and to avoid unsupported file formats



How to create:
1. Create a Message Action, name it Ask Claude and give any description of your choice.



When triggered: Opens a form → User selects an action → Adds additional instructions → Submits → Claude processes the selected message
Shape it around how your team actually works. Extend it to turn discussions into action items, review PRs before they’re merged, generate standup updates, extract tasks automatically, or create knowledge snippets from resolved threads.
Start with one real pain point. Solve it well. Then layer more intelligence on top.
The structure is already there. The possibilities are yours.
🔗 Explore Zoho Cliq: Developer Platform
🔗 Explore Anthropic API Docs