What You Can Automate
- Generate API clients and request helpers.
- Build message and conversation workflows.
- Add payment reconciliation scripts.
- Run CRM-focused lead triage and template follow-up flows.
- Keep
openapi.jsonand docs in sync with backend routes.
Recommended Setup
- Keep your API key in environment variables.
- Share your
openapi.jsonwith the assistant context. - Ask for tenant-safe patterns (
company-scoped queries only). - Ask the assistant to validate against real responses from sandbox data.
Common Prompt Template
CRM Playbook (All LLMs)
Use this flow for CRM triage and outreach:GET /conversations?limit=50&sortBy=updatedAt- Score by
summary+intent GET /conversations/{id}/actionsfor top conversations- Check unresolved/manual/help actions
GET /whatsapp-templates/{channelId}POST /whatsapp-templates/{channelId}/send
Codex Prompt
Claude Code Prompt
Other LLMs Prompt
Safety Checklist
- Never expose
VISITO_API_KEYin frontend code. - Always send
Authorization: Bearer <API_KEY>. - Keep conversation/action queries tenant-scoped.
- Add idempotency logic before sending templates.