Skip to content

Get run failures summary

Request

GET /v3/web-audits/{auditId}/runs/{runId}/reports/failures

Returns a summary of failures for the given run. Failures summary includes details for Pre-Audit Actions, On-Page Actions, all found links excluded and starting URLs navigation results.

Security
API_Key
Path
auditIdinteger, (int64)required

Unique identification number for web audit

Example:107239
runIdinteger, (int64)required

Unique identification number for web audit or journey run

Example:33010
GET
/v3/web-audits/{auditId}/runs/{runId}/reports/failures
curl -i -X GET \
  https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/failures \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

The result of the execution of the Audit Pre-Audit Actions if any

Bodyapplication/json
preAuditActionResultsobjectrequired
onPagesActionResultsobject

(Optional) Present if failure/s is/are present for any Page's On-Page Actions execution

startingUrlResultsobject

Provide information for the following use cases: One and Out - All starting URLs failed to launch One and Out - All links found were excluded by filters

Response
{ "preAuditActionResults": { "zeroAndOut": true, "preAuditActionFailures": [] }, "onPagesActionResults": { "totalConfiguredCount": 0, "totalFailedCount": 0, "resultsSample": [] }, "startingUrlResults": { "failureType": "no_links_scanned_one_and_out", "linksExcludedSample": [], "startingUrlFailures": [] } }