Get Backup Networks
Select
This Operation returns the backup networks configured for a client.
Use clientId 0 to retrieve all the backup networks
Query Parameters
- ClientId integer required
ID of the client whose backup networks has to be fetched
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
ArchPipeLineList object[]
Backup Network List
destGroupId integerDestination Client Group ID. 0 if destination is a client
srcGroupId integerID of the source client group. 0 if source is a client
isActive integer0 if the backup networks are not active else 1
destGroupEntity object
Destination client group entity
_type_ integerInternal field
clientGroupName stringName of Destination ClientGroup
destClientEntity object
Destination client entity
clientId integerID of the destination client. 0 if destination is a client group
displayName stringName of the destination client
_type_ integerInternal Field
client2 object
Destination entity details
name stringInterface of the destination
id integerDestination Client ID. 0 if the destination is a client group
client1 object
Source entity details
name stringInterface of the source entity
id integerSource Client ID. 0 if the source is a client group
srcClientEntity object
Source client entity
clientId integerID of the source
displayName stringSource Client DisplayName
_type_ integerInternal Field
srcGroupEntity object
Source Client group entity
_type_ integerInternal Field
clientGroupName stringName of the Source Client group
{
"ArchPipeLineList": [
{
"destGroupId": 0,
"srcGroupId": 0,
"isActive": 0,
"destGroupEntity": {
"_type_": 0,
"clientGroupName": "string"
},
"destClientEntity": {
"clientId": 0,
"displayName": "string",
"_type_": 0
},
"client2": {
"name": "string",
"id": 0
},
"client1": {
"name": "string",
"id": 0
},
"srcClientEntity": {
"clientId": 0,
"displayName": "string",
"_type_": 0
},
"srcGroupEntity": {
"_type_": 0,
"clientGroupName": "string"
}
}
]
}
{
"ArchPipeLineList": [
{
"destGroupId": 0,
"srcGroupId": 9035,
"isActive": 1,
"destGroupEntity": {
"_type_": 28
},
"destClientEntity": {
"_type_": 3
},
"client2": {
"name": "1.2.236.192",
"id": 758
},
"client1": {
"name": "172.*",
"id": 0
},
"srcClientEntity": {
"_type_": 3
},
"srcGroupEntity": {
"_type_": 28
}
}
]
}