# Create captcha policy Create a CAPTCHA policy for all accounts (tenants). Provide the required settings in the request body. To enable the policy, set the enabled parameter to true, and provide the siteKey and secretKey obtained from reCAPTCHA. You can also set the minimumScore parameter to a value between 0 and 1 to define the minimum score threshold. Endpoint: POST /resources/configurations/v1/captcha-policy Security: bearer ## Request fields (application/json): - `enabled` (boolean, required) - `siteKey` (string, required) - `secretKey` (string, required) - `minScore` (number, required) - `ignoredEmails` (array) Captcha validation will be skipped for those emails. ## Response 201 fields (application/json): - `id` (string, required) - `siteKey` (string, required) - `secretKey` (string, required) - `enabled` (boolean, required) - `minScore` (number, required) - `ignoredEmails` (array, required) - `createdAt` (string, required) - `updatedAt` (string, required)