Skip to main content
GET
/
api
/
auth
/
me
Return authenticated user scope
curl --request GET \
  --url https://app.narrativebanking.com/api/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "userId": "1005",
  "tenantId": "2001",
  "email": "user@example.com"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Authenticated user details

userId
string
tenantId
string
email
string<email>