curl --request PATCH \
--url https://{tenantDomain}/api/v2/attack-protection/captcha \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"active_provider_id": "arkose",
"arkose": {
"site_key": "<string>",
"secret": "<string>",
"client_subdomain": "<string>",
"verify_subdomain": "<string>",
"fail_open": true
},
"auth_challenge": {
"fail_open": true
},
"hcaptcha": {
"site_key": "<string>",
"secret": "<string>"
},
"friendly_captcha": {
"site_key": "<string>",
"secret": "<string>"
},
"recaptcha_enterprise": {
"site_key": "<string>",
"api_key": "<string>",
"project_id": "<string>"
},
"recaptcha_v2": {
"site_key": "<string>",
"secret": "<string>"
},
"simple_captcha": {}
}
'