Get Traversal Run Errors
Investigates failed downloads from one Traversal run and the parent pages that discovered them
Endpoint
GET /api/v3/jobs/{jobName}/traversal/runs/{runNum}/errors
Path Parameters
| Name | Type | Description |
|---|---|---|
| jobName | string | Required. Unique job name within the tenant. Reuse the same value to manage job config, start crawls, fetch URLs, inspect tasks and Traversal runs, and query indexed data |
| runNum | unsigned long | Required. Traversal run number used to read run status, errors, and data for the same job |
Responses
200 (Ok)
Returns TraversalErrors as TraversalErrors.
400 (Bad Request)
Invalid request parameters. Refer to the response text for more information
403 (Forbidden)
Access restricted. Refer to the response text for more information
Data Contracts
TraversalErrors
Failed download tasks from a Traversal run, grouped by parent page
Fields:
| Name | Type | Description |
|---|---|---|
| FailedDownloadTasks | array of FailedDownloadTask | Parent pages and the child download tasks that failed while crawling them |
FailedDownloadTask
Failed child download tasks discovered from one parent page
Fields:
| Name | Type | Description |
|---|---|---|
| ParentDownloadTaskUrl | string | URL of the parent page where the failed links were discovered, or the literal ‘root’ for failed start tasks |
| FailedDownloadTasks | array of DownloadTask | Child download tasks that failed |
DownloadTask
Represents one page download task created by job start, single-URL fetch, or link crawling
Fields:
| Name | Type | Description |
|---|---|---|
| Id | string | Download task ID |
| Url | string | Download task URL |