curl -X GET https://api.falconalert.com/users/settings-info \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
{
"is_reactions_enabled": 1,
"is_review_enabled": 1,
"is_reports_enabled": 1,
"is_anonymous_reports_enabled": 0
}
Get and update user settings and preferences
curl -X GET https://api.falconalert.com/users/settings-info \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
{
"is_reactions_enabled": 1,
"is_review_enabled": 1,
"is_reports_enabled": 1,
"is_anonymous_reports_enabled": 0
}
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/4rt21/backend-proyecto/llms.txt
Use this file to discover all available pages before exploring further.
Bearer <your_access_token>0 - Disabled1 - Enabled0 - Disabled1 - Enabled0 - Disabled1 - Enabled0 - Disabled1 - Enabledcurl -X GET https://api.falconalert.com/users/settings-info \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
{
"is_reactions_enabled": 1,
"is_review_enabled": 1,
"is_reports_enabled": 1,
"is_anonymous_reports_enabled": 0
}
Bearer <your_access_token>0 (disabled) or 1 (enabled)0 (disabled) or 1 (enabled)0 (disabled) or 1 (enabled)0 (disabled) or 1 (enabled)curl -X PUT https://api.falconalert.com/users/settings-info \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." \
-H "Content-Type: application/json" \
-d '{
"is_reactions_enabled": 0,
"is_reports_enabled": 1
}'
{
"is_reactions_enabled": 0,
"is_review_enabled": 1,
"is_reports_enabled": 1
}
| Status Code | Description |
|---|---|
| 401 | Unauthorized - Invalid or missing JWT token |
| 404 | Not Found - User not found |
0 (disabled) or 1 (enabled)