Skip to content

Update audit notes

Request

PUT /v3/web-audits/{auditId}

Update notes for a specific audit

Security
API_Key
Path
auditIdinteger, (int64)required

Unique identification number for web audit

Example:107239
Bodyapplication/jsonrequired

Updated audit notes

idinteger, (int64)

Unique identifier for the audit notes

notesstring

Notes content for the audit

PUT
/v3/web-audits/{auditId}
curl -i -X PUT \
  https://api.observepoint.com/v3/web-audits/107239 \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": 0,
    "notes": "string"
  }'

Responses

Updated audit notes

Bodyapplication/json
idinteger, (int64)

Unique identifier for the audit notes

notesstring

Notes content for the audit

Response
{ "id": 0, "notes": "string" }