Get Native PA SD-WAN Integration Tenant Provision Status (v2.0)
GET/v2.0/api/tenants/:tenant_id/pasdwan_integration_status
Get the native Prisma Access SD-WAN integration tenant provision status.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
Responses
- 200
- 404
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
completedAt int64
The integration complete time.
failureCount int32
The integration failure count, if any.
id string
The ID.
provisionStatus string
Possible values: [INIT
, IN_PROGRESS
, SUCCESS
, FAILURE
, NOT_APPLICABLE
]
The tenant provision status.
startedAt int64
The integration start time.
taskStatus TaskStatus[]
The task status details.
bgp_peer_id string
The ID of the BGP peer.
completedAt int64
The task completion time.
currentStatus string
Possible values: [INIT
, IN_PROGRESS
, SUCCESS
, FAILURE
, NOT_APPLICABLE
]
The task current status.
element_id string
The element ID.
error string
Any error messages.
interface_id string
The interface ID.
message string
Error/task messages.
name string
The name of the task.
service_link_id string
The service link status.
startedAt int64
The integration start time.
updatedAt int64
The integration update time.
{
"completedAt": 0,
"failureCount": 0,
"id": "string",
"provisionStatus": "INIT",
"startedAt": 0,
"taskStatus": [
{
"bgp_peer_id": "string",
"completedAt": 0,
"currentStatus": "INIT",
"element_id": "string",
"error": "string",
"interface_id": "string",
"message": "string",
"name": "string",
"service_link_id": "string",
"startedAt": 0,
"updatedAt": 0
}
]
}
Resource Not Found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
Loading...