API Unauthorized Troubleshooting
Overview
401 and 403 errors usually mean the request is missing a valid key or does not have the required scope.
Checklist
- Is the endpoint URL correct?
- Is the API key active?
- Is the key copied exactly?
- Is the required header name used?
- Does the key have the required scope?
- Is the request using HTTPS?
Example issue
If you send Authorization: Bearer but your plugin expects X-RLP-API-Key, the endpoint may return 401.
Example fix
curl -X GET "https://your-rise-domain.com/api/rise-log/activity" \
-H "Accept: application/json" \
-H "X-RLP-API-Key: YOUR_API_KEY"

