Auth Rules
List rule evaluation results
Lists Auth Rule evaluation results.
Limitations:
- Results are available for the past 3 months only
- At least one filter (event_token or auth_rule_token) must be provided
- When filtering by event_token, pagination is not supported
get/v2/auth_rules/results
Query parameters
ending_beforestring uuid
A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.
page_sizeinteger
Page size (for pagination).
starting_afterstring uuid
A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.
event_tokenstring uuid
Filter by event token
auth_rule_tokenstring uuid
Filter by Auth Rule token
beginstring date-time
Date string in RFC 3339 format. Only events evaluated after the specified time will be included. UTC time zone.
endstring date-time
Date string in RFC 3339 format. Only events evaluated before the specified time will be included. UTC time zone.
has_actionsboolean
Filter by whether the rule evaluation produced any actions. When not provided, all results are returned.
Response
Auth Rule Results
Example response
{
"data": [
{
"actions": [
{
"code": "APPROVED"
}
]
}
]
}