ThousandEyes Tests API
This API allows you to list, create, edit, and delete Network and Application Synthetics tests.
This API allows you to list, create, edit, and delete Network and Application Synthetics tests.
openapi: 3.0.1
security:
- BearerAuth: []
servers:
- description: ThousandEyes API production URL
url: https://api.thousandeyes.com/v7
info:
version: 7.0.100
title: Tests API
description: '**Note:** The Page Load Tests, API Tests, and Web Transaction Tests APIs are not available for ThousandEyes
for Government instance.
This API allows you to list, create, edit, and delete Network and Application Synthetics tests.
'
x-provenance:
method: harvested
authored_by: Cisco ThousandEyes
harvested_by: API Evangelist
harvested_on: '2026-08-19'
first_party: true
provider_published: true
source_host: pubhub.devnetcloud.com
note: 27 OpenAPI 3.0 documents (26 per-area plus a unified 326-operation document) served anonymously from Cisco's DevNet
CDN. api.thousandeyes.com itself 401s every path, so the contract is public while the API host is gated.
x-evidence:
- type: source
url: https://pubhub.devnetcloud.com/media/000-v7-apis/docs/reference/
- type: source
url: https://developer.cisco.com/docs/thousandeyes/
externalDocs:
description: Find out more about Network and Application Synthetics tests
url: https://docs.thousandeyes.com/product-documentation/internet-and-wan-monitoring/tests#cloud-and-enterprise-agent-based-tests
tags:
- name: Tests
description: Get all tests
- name: Agent to Server Tests
description: Agent to Server test management operations
- name: Agent to Agent Tests
description: Agent to Agent test management operations
- name: BGP Tests
description: BGP test management operations
- name: DNS Server Tests
description: DNS Server test management operations
- name: DNS Trace Tests
description: DNS Trace test management operations
- name: DNSSEC Tests
description: DNSSEC test management operations
- name: HTTP Server Tests
description: HTTP Server test management operations
- name: Page Load Tests
description: Page Load test management operations
- name: Web Transaction Tests
description: Web Transactions test management operations
- name: API Tests
description: API test management operations
- name: FTP Server Tests
description: FTP Server test management operations
- name: SIP Server Tests
description: SIP Server test management operations
- name: Voice Tests
description: Voice test management operations
- name: Path Visualization Interface Groups
paths:
/tests:
get:
tags:
- Tests
summary: List configured tests
operationId: getTests
description: 'Returns configured tests and saved events.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.
'
parameters:
- $ref: '#/components/parameters/AccountGroupId'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/Tests'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/bgp:
get:
tags:
- BGP Tests
summary: List BGP tests
operationId: getBgpTests
description: 'Returns a list of BGP tests and saved events.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.
'
parameters:
- $ref: '#/components/parameters/AccountGroupId'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/BgpTests'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
post:
tags:
- BGP Tests
summary: Create BGP test
operationId: createBgpTest
description: Creates a new BGP test. This method requires Account Admin permissions.
parameters:
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandBgpTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BgpTestRequest'
responses:
'201':
description: Created
headers:
Location:
$ref: '#/components/headers/Location'
content:
application/hal+json:
schema:
$ref: '#/components/schemas/BgpTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/bgp/{testId}:
get:
tags:
- BGP Tests
summary: Get BGP test
operationId: getBgpTest
description: Returns details for a BGP test, including name, intervals, targets, alert rules and agents.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandBgpTest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/BgpTestResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
put:
tags:
- BGP Tests
summary: Update BGP test
operationId: updateBgpTest
description: 'Updates a BGP test. Shared tests have limited updating capabilities. Only account-specific configurations
may be updated, namely: alert rules, alert suppression windows, labels, tags. This method requires Account Admin permissions.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.'
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandBgpTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateBgpTestRequest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/BgpTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
delete:
tags:
- BGP Tests
summary: Delete BGP test
operationId: deleteBgpTest
description: Deletes a BGP test. This method requires Account Admin permissions.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
responses:
'204':
$ref: '#/components/responses/204'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/agent-to-server:
get:
tags:
- Agent to Server Tests
summary: List Agent to Server tests
operationId: getAgentToServerTests
description: 'Returns a list of Agent to Server tests and saved events.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.
'
parameters:
- $ref: '#/components/parameters/AccountGroupId'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToServerTests'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
post:
tags:
- Agent to Server Tests
summary: Create Agent to Server test
operationId: createAgentToServerTest
description: Creates a new Agent to Server test. This method requires Account Admin permissions.
parameters:
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AgentToServerTestRequest'
responses:
'201':
description: Created
headers:
Location:
$ref: '#/components/headers/Location'
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToServerTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/agent-to-server/{testId}:
get:
tags:
- Agent to Server Tests
summary: Get Agent to Server test
operationId: getAgentToServerTest
description: Returns details for a Agent to Server test, including name, intervals, targets, alert rules and agents.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/VersionId'
- $ref: '#/components/parameters/ExpandTest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToServerTestResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
put:
tags:
- Agent to Server Tests
summary: Update Agent to Server test
operationId: updateAgentToServerTest
description: 'Updates an Agent to Server test. Shared tests have limited updating capabilities. Only account-specific
configurations may be updated, namely: alert rules, alert suppression windows, labels, tags. This method requires
Account Admin permissions.'
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAgentToServerTestRequest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToServerTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
delete:
tags:
- Agent to Server Tests
summary: Delete Agent to Server test
operationId: deleteAgentToServerTest
description: Deletes an Agent to Server test. This method requires Account Admin permissions.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
responses:
'204':
$ref: '#/components/responses/204'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/agent-to-agent:
get:
tags:
- Agent to Agent Tests
summary: List Agent to Agent tests
operationId: getAgentToAgentTests
description: 'Returns a list of Agent to Agent tests and saved events.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.
'
parameters:
- $ref: '#/components/parameters/AccountGroupId'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToAgentTests'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
post:
tags:
- Agent to Agent Tests
summary: Create Agent to Agent test
operationId: createAgentToAgentTest
description: Creates a new Agent to Agent test. This method requires Account Admin permissions.
parameters:
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AgentToAgentTestRequest'
responses:
'201':
description: Created
headers:
Location:
$ref: '#/components/headers/Location'
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToAgentTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/agent-to-agent/{testId}:
get:
tags:
- Agent to Agent Tests
summary: Get Agent to Agent test
operationId: getAgentToAgentTest
description: Returns details for a Agent to Agent test, including name, intervals, targets, alert rules and agents.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/VersionId'
- $ref: '#/components/parameters/ExpandTest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToAgentTestResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
put:
tags:
- Agent to Agent Tests
summary: Update Agent to Agent test
operationId: updateAgentToAgentTest
description: 'Updates a Agent to Agent test. Shared tests have limited updating capabilities. Only account-specific
configurations may be updated, namely: alert rules, alert suppression windows, labels, tags. This method requires
Account Admin permissions.'
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AgentToAgentTestRequest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/AgentToAgentTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
delete:
tags:
- Agent to Agent Tests
summary: Delete Agent to Agent test
operationId: deleteAgentToAgentTest
description: Deletes the specified Agent to Agent test. This method requires Account Admin permissions.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
responses:
'204':
$ref: '#/components/responses/204'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/dns-server:
get:
tags:
- DNS Server Tests
summary: List DNS Server tests
operationId: getDnsServerTests
description: 'Returns a list of all DNS Server tests and saved events.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.
'
parameters:
- $ref: '#/components/parameters/AccountGroupId'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsServerTests'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
post:
tags:
- DNS Server Tests
summary: Create DNS Server test
operationId: createDnsServerTest
description: Creates a new DNS Server test. This method requires Account Admin permissions.
parameters:
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsServerTestRequest'
responses:
'201':
description: Created
headers:
Location:
$ref: '#/components/headers/Location'
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsServerTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/dns-server/{testId}:
get:
tags:
- DNS Server Tests
summary: Get DNS Server test
operationId: getDnsServerTest
description: Returns details for a DNS Server test, including name, intervals, targets, alert rules and agents.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/VersionId'
- $ref: '#/components/parameters/ExpandTest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsServerTestResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
put:
tags:
- DNS Server Tests
summary: Update DNS Server test
operationId: updateDnsServerTest
description: 'Updates a DNS Server test. Shared tests have limited updating capabilities. Only account-specific configurations
may be updated, namely: alert rules, alert suppression windows, labels, tags. This method requires Account Admin permissions.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.'
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsServerTestRequest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsServerTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
delete:
tags:
- DNS Server Tests
summary: Delete DNS Server test
operationId: deleteDnsServerTest
description: 'Deletes the specified DNS Server test. This method requires Account Admin permissions. '
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
responses:
'204':
$ref: '#/components/responses/204'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/dns-trace:
get:
tags:
- DNS Trace Tests
summary: List DNS Trace tests
operationId: getDnsTraceTests
description: 'Returns a list of all DNS Trace tests and saved events.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.
'
parameters:
- $ref: '#/components/parameters/AccountGroupId'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsTraceTests'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
post:
tags:
- DNS Trace Tests
summary: Create DNS Trace test
operationId: createDnsTraceTest
description: 'Creates a new DNS Trace test. This method requires Account Admin permissions. '
parameters:
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsTraceTestRequest'
responses:
'201':
description: Created
headers:
Location:
$ref: '#/components/headers/Location'
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsTraceTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/dns-trace/{testId}:
get:
tags:
- DNS Trace Tests
summary: Get DNS Trace test
operationId: getDnsTraceTest
description: Returns details for a DNS Trace test, including name, intervals, targets, alert rules and agents.
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/VersionId'
- $ref: '#/components/parameters/ExpandTest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsTraceTestResponse'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
put:
tags:
- DNS Trace Tests
summary: Update DNS Trace test
operationId: updateDnsTraceTest
description: 'Updates a DNS Trace test. Shared tests have limited updating capabilities. Only account-specific configurations
may be updated, namely: alert rules, alert suppression windows, labels, tags. This method requires Account Admin permissions.
**Note**: **Saved Events** are now called **Private Snapshots** in the user interface. This change does not affect
API.'
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
- $ref: '#/components/parameters/ExpandTest'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/DnsTraceTestRequest'
responses:
'200':
description: OK
content:
application/hal+json:
schema:
$ref: '#/components/schemas/DnsTraceTestResponse'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
delete:
tags:
- DNS Trace Tests
summary: Delete DNS Trace test
operationId: deleteDnsTraceTest
description: 'Deletes the specified DNS Trace test. This method requires Account Admin permissions. '
parameters:
- $ref: '#/components/parameters/TestIdPath'
- $ref: '#/components/parameters/AccountGroupId'
responses:
'204':
$ref: '#/components/responses/204'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'429':
$ref: '#/components/responses/429'
'500':
$ref: '#/components/responses/500'
'502':
$ref: '#/components/responses/502'
default:
$ref: '#/components/responses/GeneralError'
/tests/dnssec:
get:
tags:
- DNS
# --- truncated at 32 KB (188 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/thousandeyes/refs/heads/main/openapi/thousandeyes-tests-openapi.yml