Skip to content

Return a list of unique cookies

Request

GET /v3/web-audits/{auditId}/runs/{runId}/cookies

Get all unique cookie name and domain found on all the pages in a given audit run

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}/cookies
curl -i -X GET \
  https://api.observepoint.com/v3/web-audits/107239/runs/33010/cookies \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

OK, return a list of unique cookies found

Bodyapplication/json
Array [
namestring
domainstring
]
Response
[ { "name": "string", "domain": "string" } ]