GET
/
users
/
me
curl --request GET \
  --url https://kanbn.com/api/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "<string>",
  "name": "<string>",
  "image": "<string>",
  "stripeCustomerId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successful response
id
string
required
email
string
required
name
string | null
required
image
string | null
required
stripeCustomerId
string | null
required