curl --location --request POST 'https://cn2us02.opapi.win/api/v1/user/parameter-override/test-rules' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "apiType": "chat.completions",
    "secretKey": "sk-xxx",
    "model": "gpt-5-mini",
    "requestBody": {
        "messages": [
            {
                "role": "user",
                "content": "Hello"
            }
        ],
        "temperature": 0.7
    }
}'{
    "statusCode": 0,
    "message": "string",
    "data": {
        "original": {},
        "modified": {},
        "appliedRules": [
            {
                "ruleId": "string",
                "ruleName": "string",
                "priority": 0,
                "actions": [
                    {
                        "type": "override",
                        "field": "string",
                        "value": null
                    }
                ]
            }
        ]
    }
}