Step 1: Get Your Credentials
After signing up, you'll receive:
- Your secure connection endpoint
- API authentication tokens
- Custom branding configuration
Step 2: Map Your First API Endpoint
// Example: Enable natural language for listing customers
{
"name": "list_customers",
"description": "List customers with optional filters",
"parameters": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": ["active", "inactive", "all"],
"description": "Filter by customer status"
},
"limit": {
"type": "number",
"description": "Maximum number of results"
}
}
}
}
Step 3: Try It Live
Your customers can now use plain English: