---
title: "Fetch My User"
method: GET
path: "/me"
tags: ["User"]
---

# Fetch My User

`GET /me`

This endpoint returns the user data for the currently authenticated user.
It is useful for quickly retrieving user information without knowing the user ID.
It also includes optional data if the current user is a platform agent.

## Response `200`

OK

- object — Current user data with optional platform agent information
  - `id` integer — User ID
  - `public_id` string — User public ID
  - `email` string — Email Address
  - `first_name` string — First Name
  - `last_name` string — Last Name
  - `time_zone` string, nullable — The human-readable time zone set manually by a ClickFunnels user or dynamically by the app. Read more about time zones and how to map them back to the TZ standard in [our Time Zones guide.](https://dash.readme.com/project/cf2/v2/docs/timezones).
  - `locale` string — The main language used to create a new website.
  - `created_at` string, date-time, nullable — Created at
  - `updated_at` string, date-time, nullable — Updated at
  - `connected_workspace` object, nullable — The connected workspace for the user, if the user's access is scoped to a single workspace. This can happen in the case of OAuth, where the `/me` subject is a user who is a platform agent acting on behalf of the ClickFunnels workspace users. The platform agent was authorized by a team admin to act on behalf of the connected workspace.
    - `team_id` integer — Team ID of the connected workspace
    - `team_name` string — Name of the team associated with the connected workspace
    - `workspace_id` integer — Workspace ID of the connected workspace
    - `workspace_name` string — Name of the connected workspace
    - `workspace_url` string — URL of the connected workspace
    - `workspace_currency` string — ISO 4217 currency code
  - `platform_application` object, nullable — The connected platform application. It's only present if the `/me` subject user is an agent of a different platform who was authorized by a team admin to act on behalf of the connected workspace.
    - `id` integer — ID of the platform application
    - `public_id` string — Public ID of the platform application
    - `team_id` integer — Team ID associated with the platform application

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/myclickfunnels/apis/clickfunnels-api.md) · [All operations](https://skmtc.net/myclickfunnels/apis/clickfunnels-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myclickfunnels/clickfunnels-api/revisions/ae6313eaa176/schema)
