Concept Flow - APIView for custom endpoints
Client sends HTTP request
APIView receives request
Dispatch method checks HTTP method
get()
Process request logic
Return HTTP response with data
The APIView receives an HTTP request, checks its method, calls the matching handler method, processes logic, and returns a response.