v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Scans

Get Scan Results

Use this API to retrieve results for a specific scan, including details such as cookies, tags, forms, etc.

get/api/cmp/v1/webscans/domains/{domainId}/scans/{scanId}/scanresults

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.

entityType'COOKIE' | 'TAG' | 'PAGE' | 'FORM' | 'SERVICE' | 'STORAGE' required

The type of entity such as cookie, tag, page, form, service, or storage.

pageinteger
Example:1

The page number for pagination results, starting from 0.

sizeinteger
Example:10

The number of items to return per page.

Response

Returns detailed scan results.

scanIdstring uuid

Scan ID

domainIdstring uuid

The unique identifier of the domain.

totalElementsinteger

The total number of items in the complete result set.

totalPagesinteger

The total number of pages in the paginated results.

pageSizeinteger

The number of items displayed per page.

pageNumberinteger

The current page number in the pagination sequence.

numberOfElementsinteger

The number of items in the current page.

Example response

{
  "content": [
    {
      "cookieId": "f2229953-b4b5-4042-8cb9-b78038cc4c46",
      "cookieName": "session_id",
      "host": "example.com"
    }
  ],
  "scanId": "123e4567-e89b-12d3-a456-426614174000",
  "domainId": "123e4567-e89b-12d3-a456-426614174000",
  "totalElements": 100,
  "totalPages": 99,
  "pageSize": 5,
  "pageNumber": 1,
  "numberOfElements": 5
}