GET
/
auth
/
userInfo
curl --request GET \
  --url http://localhost:3003/auth/userInfo \
  --header 'Authorization: Bearer <token>'
{
  "sub": "<string>",
  "id": "<string>",
  "name": "<string>",
  "email": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Response

200
application/json
Default Response
sub
string
id
string
name
string
email
string