- run audit now
Get list of web audits
Undelete a web audit
Get audit notes by ID
Update audit notes
Get audit configuration info for specified audit run
Get all the consent categories assigned to an audit
Update the consent categories assigned to an audit
Retrieve all consent categories snapshots that are applied to a specific audit run.
Reprocess consent-category for the selected auditId and runIds
Get latest runs for web audits
run audit now
POST /v3/web-audits/{auditId}/runs
Security
API_Key
Run the audit now. The request must contain the web-audit ID. Unlike v2 "run now" API, this API does not reject run requests if there is an active run.
The workflow file to be used in for starting the callback workflow Has to be a file name without extension, e.g. "audit-complete" instead of "audit-complete.yml"
The owner of the repository where the callback workflow is defined This is required to correctly invoke the callback workflow
The name of the repository where the callback workflow is defined This is required to correctly invoke the callback workflow
Maximum number of pages to scan during the audit run. If not provided, will default to the count of starting URLs if it exceeds the current audit configuration limit.
POST
curl -i -X POST \
https://api.observepoint.com/v3/web-audits/107239/runs \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"startingUrls": [
"string"
],
"callbackWorkflowEventType": "string",
"callbackRepositoryOwner": "string",
"callbackRepositoryName": "string",
"callbackContext": {},
"maxPages": 0,
"ghAppName": "observepoint-integration"
}'