How do you accept a GET, POST and PUT call to a function-based view using an API decorator? An API endpoint cannot accept multiple HTTP methods api_view(['GET','POST','PUT']) @api_view('GET','POST','PUT') @api_view(['GET','POST','PUT']) What a...