curl --request PATCH \
--url http://localhost:3000/tenants/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Empresa XYZ",
"slug": "empresa-xyz",
"whatsappRateLimit": {
"max": 123,
"durationMs": 123
}
}
'