GET
/
users
/
me
curl --request GET \
  --url https://api.reqlick.com/users/me \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "user": {
    "id": "1110580a82031111aaa03333",
    "status": "COMPLETED",
    "name": "FirstName",
    "lastName": "LastName",
    "isLive": true,
    "isBlock": false,
    "sessionId": null,
    "stripeCustomerId": "cus_1110580a82031111aaa03333",
    "email": "user@example.com",
    "image": "https://image.url",
    "emailVerified": true,
    "onboarding_plan": "PERSONAL",
    "isSignupTracked": true,
    "onboarding_business_name": null,
    "onboarding_business_size": null,
    "onboarding_business_industry": null,
    "onboarding_business_usecases": [
      "analytics",
      "file-to-link"
    ],
    "onboarding_details": true,
    "subscription": {
      "id": "1110580a82031111aaa03333"
    },
    "team": [
      {
        "id": "1110580a82031111aaa03333",
        "projectId": "1110580a82031111aaa03333",
        "project": {
          "url": "my-workspace-url"
        }
      }
    ],
    "lastWorkspaceViewed": "/my-last-workspace-url-viewed"
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
User profile information
success
boolean
Example:

true

user
object