Mark chatbot conversations as "test" so they stay out of your inbox and don't skew performance numbers. Useful when your team is QA-ing the bot or doing demos from the office.
How to get there: Go to Setup → Chatbot in the top menu → click your chatbot → Advanced tab → Test Mode in the sidebar.
A test conversation is a normal AI chat that's been flagged with is_test = true. The bot still answers, credits are still spent (so usage stays honest), but the conversation is:
There are two ways to flag a conversation as test: by IP, or with an in-chat command.
Add one or more IPs to the Test IPs field. Any chat that starts from one of those IPs is auto-flagged.
1.2.3.4, 5.6.7.8Find your office IP: Visit whatismyip.com from the office network and paste the result into the field.
If you're testing the bot from a different network (home, coffee shop, mobile), you can mark the current conversation as test by typing:
FLAG_TEST
into the chat. The bot won't answer that message and no credit is spent on it. The conversation is now hidden from your inbox.
This works from any device, on any installed widget, in any conversation. Use it when you can't predict your IP.
| Location | Default | How to view |
|---|---|---|
| Inbox | Hidden | (No toggle yet, by design, keeps it clean) |
| Performance dashboard | Hidden | Flip the Test conversations toggle to switch the view to test-only |
| Billing / credits | Counted as normal | Always counted |
We don't filter test conversations out of billing on purpose: it keeps your credit usage in line with what the AI actually generated, and it stops accidental abuse of the flag.
If you call our chatbot API directly, you can mark a conversation as test on the very first message by passing is_test: true in the JSON body:
{
"message": "Hello",
"conversation_id": "550e8400-e29b-41d4-a716-446655440000",
"is_test": true
}
Once set on the first message of a thread, it sticks for the rest of that conversation. You can also send FLAG_TEST as the message value at any point to flip an existing conversation to test.