Scans
Get List of Added or Removed Cookies
Use this API to retrieve a list of added or removed cookies between the current and previous scan for the specified domain.
get/api/cmp/v1/webscans/domains/{domainId}/scans/{scanId}/scandelta
Path parameters
domainIdstring uuid required
The unique identifier of the domain.
scanIdstring uuid required
The unique identifier of the scan.
Query parameters
languagestring
The language code for localized content.
countryCodestring
The country code for regional settings.
Response
OK
Example response
{
"addedCookies": [
{
"cookieId": "f2229953-b4b5-4042-8cb9-b78038cc4c46",
"cookieName": "session_id",
"host": "example.com"
}
],
"removedCookies": [
{
"cookieId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"cookieName": "old_cookie",
"host": "test.com"
}
],
"scanDeltaMetadata": {
"id": "f2229953-b4b5-4042-8cb9-b78038cc4c46",
"sourceScanId": "f2229953-b4b5-4042-8cb9-b78038cc4c46",
"targetScanId": "f2229953-b4b5-4042-8cb9-b78038cc4c46",
"targetScanDate": "2025-04-25T10:15:30Z"
}
}