URL list for scanning (getScanUserUrlList)
getScanUserUrlList — method returns a list of URLs which were audited if the scan type was specified for assigned URLs (imported or hand-typed).
Request parameters | ||
Parameters | Value | Description |
id | any number or string | Request id |
method | getScanUserUrlList | API method name |
params | {...} | Array of parameters |
projectId | any number or string | Project id |
Response parameters | |
Parameters | Description |
id | Response id |
result | Contains the answer |
urls | URL list |
scanType | Scan type |
isImported | Imported URL list |
{
"method": "AuditSite.getScanUserUrlList",
"params": {
"projectId": 11111,
},
"jsonrpc": "2.0",
"id": 0,
}
{
"id": "",
"result": {
"urls": [
"http://audit.test.pages/largeImage/linksToLargeImagesExist.html",
"http://audit.test.pages/charsetMissing/charsetEmpty.html",
"http://audit.test.pages/pageSize/largePageSize.html"
],
"scanType": 2,
"isImported": true
}
}