Retrieve summary information of a scan

Request
Security:
st_portal_auth
(read:merchant)
path Parameters
scanId
required
integer <int64>

the unique Id of the Scan

Example: 567890
Responses
200

successful operation

400

Bad Request. The request parameters (or body) were malformed or invalid. Fix the issues with the request and try again.

401

Unauthorized request. Make sure token was included and is valid and try again.

403

Forbidden. You are not permitted to access the requested resource.

404

Not Found. The specified resource (or resource referred to by id) was not found

405

Method Not Allowed. The API was accessed with the wrong method

429

Too Many Requests. The API is rate-limited. Wait and try your request again.

500

Internal Server Error. An unexpected error has occurred. This may be due to a transient error. Retry the request and if the issue persists, please contact support.

503

Service Unavailable. The service is temporarily unavailable. Try your request later.

get/wrm/v1/scans/{scanId}/summary
Request samples
curl -i -X GET \
  'https://api.vikingcloud.com/wrm/v1/scans/{scanId}/summary' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response samples
application/json
{
  • "scanId": 2,
  • "merchantId": 254,
  • "sponsorId": 2,
  • "scanDate": "2019-08-24",
  • "scanStart": "string",
  • "scanFinish": "string",
  • "scanStatus": "string",
  • "sponsorName": "US Federal Bank",
  • "merchantName": "Preferred Merchant",
  • "mid": 12345678,
  • "merchantStatus": "string",
  • "mccDescription": "Retail sales of electronics goods",
  • "findings": {
    },
  • "scanReports": [
    ],
  • "malwareFindings": 0,
  • "secureCheckoutFindingsCounts": {
    },
  • "passwordProtectionFindingsCount": 0,
  • "category": "string",
  • "ecommercePaymentPlatformFindingsCount": 0,
  • "ispFindingsCount": 0,
  • "technologyStackFindingsCount": 0,
  • "thirdPartyScanComplete": true,
  • "webHostingProviders": [
    ],
  • "detectedPolicyUrls": {
    },
  • "geolocation": {
    },
  • "whoIsInfoCollected": true,
  • "knownRisk": true,
  • "ipAddressWebsiteCount": 0
}