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

# Describe user

> Retrieve the profile of the signed-in user.

Returns the profile of the user identified by the session cookie.

## Authorization

<ParamField header="Cookie" type="string" required>
  Session cookie set by [Sign in](/api-reference/authentication/signin): `omnistrate_token=<jwt>`.
</ParamField>

## Response

<ResponseField name="id" type="string" required>
  ID of the user.
</ResponseField>

<ResponseField name="name" type="string">
  Name of the user.
</ResponseField>

<ResponseField name="email" type="string">
  Email of the user.
</ResponseField>

<ResponseField name="roleType" type="string">
  Role of the user.
</ResponseField>

<ResponseField name="status" type="string">
  Status of the user.
</ResponseField>

<ResponseField name="enabled" type="boolean">
  Whether the user is enabled.
</ResponseField>

<ResponseField name="orgId" type="string">
  ID of the organization the user owns.
</ResponseField>

<ResponseField name="orgName" type="string">
  Name of the organization the user owns.
</ResponseField>

<ResponseField name="orgURL" type="string">
  URL of the organization.
</ResponseField>

<ResponseField name="orgSupportEmail" type="string">
  Support email of the organization.
</ResponseField>

<ResponseField name="planName" type="string">
  Product plan associated with the user.
</ResponseField>

<ResponseField name="address" type="object">
  Postal address of the user.
</ResponseField>

<ResponseField name="attributes" type="object">
  Additional attributes of the user, as string key-value pairs.
</ResponseField>

<ResponseField name="createdAt" type="string">
  Time the user was created.
</ResponseField>

<ResponseField name="lastModifiedAt" type="string">
  Time the user was last updated.
</ResponseField>

## Errors

See [Error](/api-reference/schemas#error) for the error response shape.
