User Information
Developing
Get the information about the user
if not a user with special tole request param id has to be eaqual to the id of the jwt auth token
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/user/info?id' \
--header 'Authorization: Bearer <token>'
Responses
application/json {
"id": "string",
"username": "string",
"email": "string"
}
Modified at 2025-02-23 08:53:51