Skip to content

Get list of web audits

Request

GET /v3/web-audits

Retrieve all web audits accessible to the authenticated user based on their permissions

Security
API_Key
GET
/v3/web-audits
curl -i -X GET \
  https://api.observepoint.com/v3/web-audits \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

List of web audits

Bodyapplication/json
Array [
auditIdintegerrequired

Unique identifier for the audit

auditNamestringrequired

Name of the audit

ownerIdinteger

User ID of the audit owner

createdAtstring, (date-time)

Timestamp when the audit was created

folderIdintegerrequired

Folder ID where the audit is stored

domainIdintegerrequired

Domain ID associated with the audit

updatedAtstring, (date-time)

Timestamp when the audit was last updated

]
Response
[ { "auditId": 0, "auditName": "string", "ownerId": 0, "createdAt": "2019-08-24T14:15:22Z", "folderId": 0, "domainId": 0, "updatedAt": "2019-08-24T14:15:22Z" } ]