Get a Probe Config (v2.0)
GET/sdwan/v2.0/api/probeconfigs/:config_id
List a probe config.
Request
Path Parameters
The probe config ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The description of the probe configuration. Max size = 256.
The probe configuration based on rules that are enabled.
endpoints ProbeEndpoint[]required
Info on the probe endpoint configurations.
Allow insecure HTTPS connections. True or False.
The DNS server IP address.
The FQDN for the probe configuration.
The HTTP response codes.
The HTTP response string.
The IPv4 address for the probe configuration.
Possible values: [vpn
, direct
, servicelink
, all
]
The probe path type selected = Direct, Prisma SD-WAN VPN, and Direct VPN.
The probe count value which is a multiple of the probe cycle duration; multiples of 1, 2, and 3.
Probe cycle duration in minutes or seconds.
Possible values: [http
, https
, icmp
, dns
]
The selected protocol = HTTP, HTTPS, DNS, and ICMP.
The probe config ID.
The probe config name. Max size = 128.
An information field that can be added to identify the probe config. Maximum 10 unique tags of length 1024 each are allowed.
{
"enabled": true,
"endpoints": [
{
"allow_insecure_https_connection": true,
"dns_server_ip": "string",
"fqdn": "string",
"http_response_codes": [
0
],
"http_response_string": "string",
"ipv4_address": "string",
"path_types": [
"vpn"
],
"probe_count": 0,
"probe_cycle_duration": 0,
"protocol": "http"
}
],
"id": "string",
"name": "string",
"tags": [
"string"
]
}