v66

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-042174421.1 MB
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

auth_rule_tokenstring uuid required

Auth Rule Token

beginstring date required

The start date (UTC) of the report.

endstring date required

The end date (UTC) of the report.

Example response

{
  "daily_statistics": [
    {
      "versions": [
        {
          "examples": [
            {
              "actions": [
                {
                  "code": "APPROVED"
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}