You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mark Mikofski edited this page May 9, 2025
·
1 revision
PV Free allows any user to make GET requests to read lists and details from the API.
Authentication
The authentication class is_authenticated method is overloaded to check if the request.method is GET.
Authorization
The authorization class read_list and read_detail methods are overloaded with the ReadOnlyAuthorization methods so that any authenticated user will have read access. Therefore API calls with GET requests will be authenticated and can read lists and details of records.