Skip to content

Authentication and Authorization

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.

Clone this wiki locally