WdsGetTraversalRunErrors
Investigates failed downloads from one Traversal run and the parent pages that discovered them
Arguments
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| jobName | string | Yes | None | 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 | ulong | Yes | None | Traversal run number used to read run status, errors, and data for the same job |
Return Type
Returns TraversalErrors.
Technical return shape: TraversalErrors.
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 |
Behavior
Read-only: yes; idempotent: yes; destructive: no; open-world: no.