Get Path Group of Tenant (v2.1)
GET/v2.1/api/tenants/:tenant_id/pathgroups/:path_group_id
List the path group of a tenant.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
path_group_id stringrequired
ID of the path group.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
description
The description of the path group. Max length 256.
id string
The ID of the path group.
name string
The name of the path group. Max length 128.
paths WANPath[]
List of paths in the group.
label string
The label to identify the path.
path_type stringrequired
Possible values: [vpn
, direct
, servicelink
]
The path type.
{
"id": "string",
"name": "string",
"paths": [
{
"label": "string",
"path_type": "vpn"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "PATHGROUP_NOT_FOUND"
}
]
}
}
Loading...