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

# Locating IDs

> Find user IDs, enterprise IDs, and file or folder IDs in the Box web app, Admin Console, Developer Console, and API.

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

## User IDs

### As a developer

To locate your own user ID in the Box web app, navigate to your **All Files** page. Select your avatar and choose **Account Settings** from the dropdown menu. Your user ID is the **Account ID** value listed in the **Account Details** section of the **Account** tab.

### As an admin

If your account type provides access to the <Link href="https://docs.box.com/en/box-admin-tools/managing-content/content-manager/about-content-manager">Content Manager</Link>, select the user in question from the user list. The URL reveals their user ID. For example, in `https://app.box.com/master/content/2267862105/0/0`, the user ID is `2267862105`.

To find user IDs using the API, navigate to the Developer Console and generate a Developer Token or obtain an Access Token for yourself. Then call the <Link href="/reference/get-users">list enterprise users</Link> endpoint. This returns a list of all users in your enterprise.

## Enterprise ID

### As a developer

To find your enterprise ID, select your account icon in the top-right of the <Link href="https://cloud.app.box.com/developers/console">Developer Console</Link> and choose **Copy Enterprise ID**.

### As an admin

From the **Admin Console**, navigate to the **Account & Billing** tab. The Enterprise ID is located under the **Account Information** section.

## Content IDs

### As a developer

To locate a file ID via the Box web app, navigate to the file's preview in your browser and look at the URL. For example, the file ID of `https://app.box.com/file/1234567890` is `1234567890`.

To locate a folder ID via the Box web app, navigate into the folder and look at the URL. For example, the folder ID of `https://app.box.com/folder/9876543210` is `9876543210`.

To locate content IDs via the API, start by listing all items at the All Files level by passing `0` as the `folder_id` of the <Link href="/reference/get-folders-id-items">list items in folder</Link> endpoint.

### As an admin

If you have access to the Content Manager, select the user in question from the user list and then navigate to the content. The URL reveals the folder and/or file ID. For example, in `https://app.box.com/master/content/1987212562/88560510648/0/532181212706`:

* User ID: `1987212562`
* Folder ID: `88560510648`
* File ID: `532181212706`
