Create a new router with the specified configuration.
API key for authentication. Make sure to include the word apikey, followed by a single space and then your token.
Example: apikey 1234$abcdef
name of router
{ "enable_snat": true, "type": "default" }List of interfaces to attach to router immediately after creation.
[
{
"subnet_id": "3ed9e2ce-f906-47fb-ba32-c25a3f63df4f",
"type": "subnet"
}
]List of custom routes.
[
{
"destination": "10.0.3.0/24",
"nexthop": "10.0.0.13"
}
]List of created tasks
List of task IDs representing asynchronous operations. Use these IDs to monitor operation progress:
GET /v1/tasks/{task_id} - Check individual task status and details
Poll task status until completion (FINISHED/ERROR) before proceeding with dependent operations.