Duplicate an existing rule to create a new rule with the same content and configuration. ## Path parameters **`org_id`** string required The organization ID **`rule_id`** string required The ID of the rule to duplicate ## Returns Returns the newly created rule object with a new ID and incremented name (e.g., "Rule Name (Copy)"). Request ```bash curl -X POST https://api.aitronos.com/v1/organizations/org_123abc/rules/rule_a1b2c3d4/duplicate \ -H "X-API-Key: $FREDDY_API_KEY" ``` Response ```json { "success": true, "data": { "id": "rule_e5f6g7h8", "organization_id": "org_123abc", "name": "Professional Communication Rule (Copy)", "content": "Always maintain a professional and courteous tone...", "description": "Ensures professional communication standards", "category": "professional", "rule_type": "behavior", "scope": "organization", "apply_mode": "always", "is_public": false, "is_active": true, "version": 1, "created_at": "2025-01-17T12:00:00Z", "updated_at": "2025-01-17T12:00:00Z" } } ```