We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is to implement an endpoint that will enable a logged in user access his/her profile information.
This endpoint is expected to return a user object that contains the username and email of the authenticated user.
user
Endpoint: GET /profile/:id
GET /profile/:id
Response spec:
{ "user": { "username": "...", "email": "..." } }
Edge cases to keep in mind:
{ "error": "appropriate error message" }
The text was updated successfully, but these errors were encountered:
I want to contribute
Sorry, something went wrong.
No branches or pull requests
This is to implement an endpoint that will enable a logged in user access his/her profile information.
This endpoint is expected to return a
user
object that contains the username and email of the authenticated user.Endpoint:
GET /profile/:id
Response spec:
Edge cases to keep in mind:
The text was updated successfully, but these errors were encountered: