---
title: "Get My Account Details"
method: GET
path: "/customers/my-account"
tags: ["MyAccount"]
---

# Get My Account Details

`GET /customers/my-account`

Returns base details about the currently authenticated customer (the holder of the bearer customer token).

## Response `200`

The `Customer` was successfully retrieved

- object
  - `data` Customer, required — A guest record — the long-lived profile that bookings, orders, payments, memberships and marketing preferences attach to. Customers are scoped to a site (and, where configured, an organisation) and may have multiple addresses, payment methods and external IDs. Their email is the natural login identifier when self-service is enabled.
    - `id` string, uuid, required — The ID of the customer.
    - `first_name` string, nullable, required — The first name of the customer.
    - `last_name` string, nullable, required — The last name of the customer.
    - `full_name` string, nullable, required — The customer's full name
    - `phone` string, nullable, required — The customer's phone number in E.164 format, or `null` if not provided.
    - `has_password` boolean, required — Whether the user has a password
    - `dob` string, date, nullable, required — The customer's date of birth in YYYY-MM-DD format, or `null` if not provided.
    - `brand_id` string, uuid, required — The ID of the brand this customer belongs to
    - `site_id` string, uuid, required — Identifier of the site the customer was created at. Customer records are scoped per site so each location's CRM data is isolated; cross-site reporting is available via the brand or organisation.
    - `stripe_id` string, nullable, required — The Stripe Customer ID for this customer
    - `express_stripe_id` string, nullable, required — The Stripe Customer ID for this customer if they also exist in Trybe's legacy Stripe integration
    - `email` string, nullable, required — The email address of the customer. The case of the email address is not preserved, so you'll always see this in lowercase.
    - `labels` SchemasCustomerLabel[], required — An array of labels associated with this customer
      - `id` string, uuid, required — The ID of the label
      - `value` string, required — The name of the label
      - `colour` string, required — A hex colour code excluding the preceding \# which this label will be rendered as.
    - `preferred_locale` string, required — The preferred locale of the customer. This must be one of the platform's supported locales, which can be retrieved using the [`listMetaSupportedLocales`](/endpoints/Meta#listMetaSupportedLocales) endpoint.
    - `locked_at` string, date-time, nullable, required — The datetime which the customer was locked, or null if it has not been locked.
    - `created_at` string, date-time, required — The datetime which the customer was created
    - `updated_at` string, date-time, required — The datetime which the customer was last updated
    - `deleted_at` string, date-time, nullable, required — The datetime which the customer was anonymised, or null if it has not been.
    - `last_active_at` string, date-time, nullable, required — The datetime which the customer was last active
    - `email_verified_at` string, date-time, nullable, required — The datetime which the customer verified their email address
    - `last_check_in` LastCheckInSummary, required
      - `checked_in_at` string, date-time, nullable, required — The datetime which the customer was last checked in.
      - `method` string, required — The name of the method used to create this check-in
    - `avatar_id` string, uuid, nullable, required — The media ID of the customer's avatar, or `null` if one hasn't been provided.
    - `avatar` Media, required
      - `id` string, uuid, required — Unique identifier of the uploaded media item, returned from `createMedia`. Pass this ID into any field that accepts a media reference (logos, hero images, product images, etc.).
      - `file_name` string, required — Original filename of the uploaded asset, preserved as provided at upload time. Used for display in the media library and as a hint when serving downloads.
      - `mime_type` string, required — The mime type of the media item.
      - `original_url` string, required — The url of the media resource.
      - `size` integer, required — The size of the media item in bytes.
      - `url` string, required — The url of the converted media resource.
    - `external_ref` string, nullable, required — An external reference for this customer.

## Other responses

- `401` — The user is unauthenticated

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
