Catalyst SD-WAN vManage
This guide shows how to use the
CiscoVmanage
client to interact with Cisco SD-WAN vManage APIs.
It handles authentication, token refresh, and error management for you.
Connect to Cisco SD-WAN vManage
from wingpy import CiscoVmanage
vmanage = CiscoVmanage(
base_url="https://vmanage.example.com/dataservice", # (1)!
username="admin", # (2)!
password="password", # (3)!
verify=False,
)
- Environment variable:
- Environment variable:
- Environment variable:
- Authentication and token refresh are handled automatically, but you can call
.authenticate()
to force re-authentication.