Description of problem: I was trying to create and edit couple of user using the following APIs. 1. api/v2/user 2. api/v2/user/<pk> the User gets created fine using the 1st API. but when try to edit the user details (using PATCH request or PUT request) like email id. I get the error 403 FORBIDDEN error saying that "permission denied". know that I am logged as admin with admin privileges. There is also a note saying that "Users can only modify their own account (i.e. the user being modified must be the user associated with the current login session)." SO i try to login to the created user and do a GET request with 2nd API. and then I GET 403 FORBIDDEN ERROR. how do i edit user details using the APIs.
looks good to me.