curl --request POST \
--url https://api.dooki.com.br/v2/{alias}/content/redirects/batch \
--header 'Content-Type: application/json' \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>' \
--data '
{
"redirects": [
{
"url_from": "/old-path",
"url_to": "/new-path"
}
]
}
'