> ## Documentation Index
> Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Current User

Returns the authenticated user's account details.

## Response

<ResponseField name="uuid" type="string">
  The unique UUID of the user.
</ResponseField>

<ResponseField name="id" type="integer">
  The numeric ID of the user.
</ResponseField>

<ResponseField name="name" type="string">
  The user's full name.
</ResponseField>

<ResponseField name="email" type="string">
  The user's email address.
</ResponseField>

<ResponseField name="email_verified" type="boolean">
  Whether the user has verified their email address.
</ResponseField>

<ResponseField name="profiling" type="object">
  Onboarding status for the user.

  <Expandable title="profiling">
    <ResponseField name="required" type="boolean">
      Whether the user still has a pending onboarding profile to complete.
    </ResponseField>

    <ResponseField name="next_step" type="string">
      The next onboarding step to complete, or `null` when none is pending. One of `company` or `tailor`.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="avatar" type="string">
  Gravatar URL for the user's avatar, based on their email address.
</ResponseField>

<ResponseField name="intercom" type="object">
  Credentials used to identify the user in Intercom.

  <Expandable title="intercom">
    <ResponseField name="jwt" type="string">
      Signed JWT identifying the user to Intercom.
    </ResponseField>

    <ResponseField name="hmac_android" type="string">
      HMAC identity verification hash for the Android SDK.
    </ResponseField>

    <ResponseField name="hmac_ios" type="string">
      HMAC identity verification hash for the iOS SDK.
    </ResponseField>

    <ResponseField name="hmac_web" type="string">
      HMAC identity verification hash for the web SDK.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp of when the user was created.
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 timestamp of when the user was last updated.
</ResponseField>
