device.app_hosting.guest_routes

Operation: GET /dataservice/device/app-hosting/guest-routes

Get App hosting guest routes from device

def get_app_hosting_guest_routes(device_id: str) -> Any: ...

Example:

from catalyswan.core import create_client

url = "example.com"
username = "admin"
password = "password123"

with create_client(
    url=url, username=username, password=password
) as client:
    client.device.app_hosting.guest_routes.get_app_hosting_guest_routes()