GET
/
waap
/
v1
/
domains
/
{domain_id}
/
api-discovery
/
scan-results
curl --request GET \
  --url https://api.gcore.com/waap/v1/domains/{domain_id}/api-discovery/scan-results \
  --header 'APIKey: <api-key>'
{
  "limit": 123,
  "offset": 123,
  "count": 123,
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "start_time": "2023-11-07T05:31:56Z",
      "end_time": "2023-11-07T05:31:56Z",
      "status": "SUCCESS",
      "type": "TRAFFIC_SCAN",
      "message": "<string>"
    }
  ]
}

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

domain_id
integer
required

The domain ID

Query Parameters

ordering
enum<string>
default:-start_time

Sort the response by given field.

Available options:
id,
type,
start_time,
end_time,
status,
message,
-id,
-type,
-start_time,
-end_time,
-status,
-message
type
enum<string> | null

Filter by the path of the scan type The different types of scans that can be performed

Available options:
TRAFFIC_SCAN,
API_DESCRIPTION_FILE_SCAN
status
enum<string> | null

Filter by the status of the scan The different statuses a task result can have

Available options:
SUCCESS,
FAILURE,
IN_PROGRESS
message
string | null

Filter by the message of the scan. Supports '*' as a wildcard character

Maximum length: 1024
limit
integer
default:100

Number of items to return

Required range: 0 <= x <= 100
offset
integer
default:0

Number of items to skip

Required range: 0 <= x <= 100000

Response

200
application/json

Successful Response

The response is of type object.