Captcha validation will be skipped for those emails.
- Get captcha policy
Authentication and Identity Management
Frontegg offers a comprehensive suite of authentication, user management, and security features to streamline identity management and enhance application security. This section provides an overview of all relevant API endpoints, organized into Authentication, Management, and Self-Service categories.
Authentication Endpoints: Enable secure user login, multi-factor authentication (MFA), passwordless options, and social login integrations, allowing for a flexible and robust sign-in experience.
Management Endpoints: Require environment-level authorization and provide full control over SSO (SAML and OpenID Connect) resources, user roles, permissions, and configurations. These endpoints are designed for administrative use, allowing for centralized identity and access management.
Self-Service Endpoints: Accessible with a user token (JWT), these endpoints empower users to manage their SSO connections and other account settings. Users with the necessary permissions can create, update, or delete SSO configurations directly, ensuring they have the tools to manage their access securely and independently.
Each category in this section helps you configure and extend Frontegg’s capabilities, providing the flexibility to manage user identities, authentication protocols, and access controls as per your application’s needs.
Request
Update the CAPTCHA policy for all accounts (tenants).
Provide the desired 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.
- EU Regionhttps://api.frontegg.com/identity/resources/configurations/v1/captcha-policy
- US Regionhttps://api.us.frontegg.com/identity/resources/configurations/v1/captcha-policy
- CA Regionhttps://api.ca.frontegg.com/identity/resources/configurations/v1/captcha-policy
- AU Regionhttps://api.au.frontegg.com/identity/resources/configurations/v1/captcha-policy
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/identity/resources/configurations/v1/captcha-policy
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X PUT \
https://api.frontegg.com/identity/resources/configurations/v1/captcha-policy \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"enabled": true,
"siteKey": "string",
"secretKey": "string",
"minScore": 0,
"ignoredEmails": [
"string"
]
}'{ "id": "string", "siteKey": "string", "secretKey": "string", "enabled": true, "minScore": 0, "ignoredEmails": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
- EU Regionhttps://api.frontegg.com/identity/resources/configurations/v1/captcha-policy
- US Regionhttps://api.us.frontegg.com/identity/resources/configurations/v1/captcha-policy
- CA Regionhttps://api.ca.frontegg.com/identity/resources/configurations/v1/captcha-policy
- AU Regionhttps://api.au.frontegg.com/identity/resources/configurations/v1/captcha-policy
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/identity/resources/configurations/v1/captcha-policy
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X GET \
https://api.frontegg.com/identity/resources/configurations/v1/captcha-policy \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "id": "string", "siteKey": "string", "secretKey": "string", "enabled": true, "minScore": 0, "ignoredEmails": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
- EU Regionhttps://api.frontegg.com/identity/resources/configurations/v1/jwt-template-targeting
- US Regionhttps://api.us.frontegg.com/identity/resources/configurations/v1/jwt-template-targeting
- CA Regionhttps://api.ca.frontegg.com/identity/resources/configurations/v1/jwt-template-targeting
- AU Regionhttps://api.au.frontegg.com/identity/resources/configurations/v1/jwt-template-targeting
- Frontegg sub-domain for use with user tokenshttps://app-xxx.frontegg.com/identity/resources/configurations/v1/jwt-template-targeting
- cURL
- JavaScript
- Python
- GO
- Payload
curl -i -X GET \
https://api.frontegg.com/identity/resources/configurations/v1/jwt-template-targeting \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "id": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "targeting": {} }