curl --location --request POST 'https://api.tenbyte.io/vhosts/bulk' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"host": "example.com",
"upstreams": [{
"url": "https://backend.example.com",
"timeout": 30
}]
},
{
"host": "api.example.com",
"upstreams": [{
"url": "https://api-backend.example.com",
"timeout": 10
}]
}
]'{}