template.config.rmalist
Operation: GET /dataservice/template/config/rmalist/{oldDeviceId}
Get compatible devices of model, chassis number, certificate serial number with the old device
def get_compatible_devices(old_device_id: str) -> List[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.template.config.rmalist.get_compatible_devices()