Documentation Index
Fetch the complete documentation index at: https://incredible-42686482-cursor-create-detailed-ai-agent-cookboo.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The unique identifier of the integration to execute the feature from
curl -X POST "https://api.incredible.one/v1/integrations/{integration_id}/execute" \
-H "Content-Type: application/json" \
-d '{"user_id": "your_user_id", "feature_name": "gmail_send_email", "inputs": {"recipient_email": "user@example.com", "body": "Hello from Incredible API!"}}'
{
"success": true,
"result": {
"message_id": "abc123...",
"status": "sent"
},
"integration_id": "gmail",
"feature_name": "gmail_send_email",
"user_id": "your_user_id"
}
{
"error": "Feature not found",
"available_features": ["gmail_send_email", "gmail_get_emails"]
}