template.config.quick_connect.submit_devices

Operation: POST /dataservice/template/config/quickConnect/submitDevices

Creates and pushes bootstrap configurations onto day0 devices.

def post(payload: SubmitDay0ConfigPostRequest) -> 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.quick_connect.submit_devices.post()