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"]
}
The unique identifier of the integration
The unique identifier of the user executing the feature
The name of the feature/function to execute
The input parameters for the feature execution
Feature executed successfully
Whether the feature execution was successful
The ID of the integration that executed the feature
The name of the feature that was executed
The ID of the user who executed the feature
The result data from the feature execution