Auth Rules
Retrieve a performance report
Retrieves a performance report for an Auth rule containing daily statistics and evaluation outcomes.
Time Range Limitations:
- Reports are supported for the past 3 months only
- Maximum interval length is 1 month
- Report data is available only through the previous day in UTC (current day data is not available)
The report provides daily statistics for both current and draft versions of the Auth rule, including approval, decline, and challenge counts along with sample events.
get/v2/auth_rules/{auth_rule_token}/report
Path parameters
auth_rule_tokenstring uuid required
Query parameters
beginstring date required
Start date for the report
endstring date required
End date for the report
Response
Auth Rule Performance Report
Example response
{
"daily_statistics": [
{
"versions": [
{
"examples": [
{
"actions": [
{
"code": "APPROVED"
}
]
}
]
}
]
}
]
}