Modify routes via API

Much like this post API, Terraform, aoutomation I’m adding ZT members that route to networks, so as I add a member I need to add a route to the existing ZT network (or remove the route when a member is removed). Is there an API call to do this? All I see is the entire network object available.

you can just post the portion of the network object you wish to change.

{ 
  "config": {
    "routes": [
      "10.0.0.0/24", 
      "10.6.5.0/24"
      ]
    }
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.