curl --request PATCH \
--url https://api.wacht.dev/restrictions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"allowed_email_domains": [
"company.com",
"partner.com"
],
"blocked_email_domains": [
"temp-mail.com"
],
"allowed_countries": [
"US",
"CA",
"GB"
],
"blocked_countries": [
"<string>"
],
"ip_whitelist": [
"<string>"
],
"ip_blacklist": [
"<string>"
]
}'