Leme
When creating a custom connection in Leme, use:
Validate the connection with
GET /me first. The returned organization.id
is the connection’s stable identity.
Claude Code and Codex
Claude Code and Codex can test the API through their terminal tools. The Bevits API is REST; it does not present itself directly as an MCP server. Start the tool with the variable available in its environment:Recommended CRM workflow
To answer “who are the best customers in the VIP segment and what did they buy?”, the agent can use only three steps:GET /segments?q=VIPto find the segment.GET /segments/{segment_id}/customers?sort=total_spentto rank its customers.GET /customers/{customer_id}/purchasesto query the selected customer’s purchases.