Endpoint
- Method:
GET - Path:
/settings/captcha - Edition: PRO
- Controller:
ProSettingController@getCaptchaSettings - Route source:
fluent-affiliate-pro/app/Http/Routes/api.php
GET Get Captcha Settings
GET
/settings/captcha
Get the captcha (Google reCAPTCHA) settings, the available provider list, and whether the active provider's keys have been validated. Secret keys are returned masked.
Controller: ProSettingController@getCaptchaSettings
Route source: fluent-affiliate-pro/app/Http/Routes/api.php
Authorizations
ApplicationPasswords
WordPress Application Passwords — use Basic auth with username:application_password.
Type
API Key (header: Authorization)
Responses
Successful response
application/json
JSON
{
"settings": {
"enabled": "string",
"active_provider": "string",
"providers": {
}
},
"providers": [
{
"key": "string",
"title": "string"
}
],
"validated": true
}