---
title: "Retrieve own profile"
method: GET
path: "/api/v1/users/me"
tags: ["Users"]
---

# Retrieve own profile

`GET /api/v1/users/me`

Retrieve informations about account owner.

## Query parameters

- `account_id` string, required

## Response `200`

OK. Request succeeded.

- union
  - object
    - `provider` 'LINKEDIN', required
    - `provider_id` string, required
    - `entity_urn` string, required
    - `object_urn` string, required
    - `first_name` string, required
    - `last_name` string, required
    - `profile_picture_url` union, required
      - string
      - unknown
    - `public_profile_url` string
    - `public_identifier` string
    - `headline` string
    - `location` string
    - `email` string, required
    - `premium` boolean, required
    - `open_profile` boolean, required
    - `occupation` string
    - `organizations` object[], required
      - `id` string, required
      - `mailbox_id` string, required
      - `name` string, required
    - `recruiter` union, required
      - object
        - `owner_seat_id` string, required
        - `contract_id` string, required
      - object
        - `error` union, required
          - 'MULTIPLE_SESSIONS'
          - 'DISCONNECTED'
      - unknown
    - `sales_navigator` union, required
      - object
        - `owner_seat_id` string, required
        - `contract_id` string, required
      - object
        - `error` 'DISCONNECTED', required
      - unknown
    - `object` 'AccountOwnerProfile', required
  - object
    - `provider` 'TELEGRAM', required
    - `provider_id` string, required
    - `self` union
      - boolean
      - unknown
    - `contact` union
      - boolean
      - unknown
    - `mutual_contact` union
      - boolean
      - unknown
    - `deleted` union
      - boolean
      - unknown
    - `bot` union
      - boolean
      - unknown
    - `verified` union
      - boolean
      - unknown
    - `restricted` union
      - boolean
      - unknown
    - `fake` union
      - boolean
      - unknown
    - `premium` union
      - boolean
      - unknown
    - `close_friend` union
      - boolean
      - unknown
    - `first_name` union
      - string
      - unknown
    - `last_name` union
      - string
      - unknown
    - `username` union
      - string
      - unknown
    - `phone` union
      - string
      - unknown
    - `profile_picture_url` string, required
    - `status` union
      - object
        - `name` string, required
        - `expires` number
        - `was_online` number
      - unknown
    - `restriction_reason` union
      - object[]
        - `platform` string, required
        - `reason` string, required
        - `text` string, required
      - unknown
    - `lang_code` union
      - string
      - unknown
    - `object` 'AccountOwnerProfile', required
  - object
    - `provider` 'TWITTER', required
    - `id` string, required
    - `name` string, required
    - `screen_name` string, required
    - `location` string, required
    - `description` union, required
      - unknown
      - string
    - `url` union, required
      - unknown
      - string
    - `entities` object, required
      - `description` object, required
        - `urls` unknown[], required
          - unknown
    - `protected` boolean, required
    - `verified` boolean, required
    - `followers_count` number, required
    - `friends_count` number, required
    - `listed_count` number, required
    - `favourites_count` number, required
    - `statuses_count` number, required
    - `created_at` string, required
    - `profile_banner_url` union
      - string
      - unknown
    - `profile_image_url_https` string, required
    - `default_profile` boolean, required
    - `default_profile_image` boolean, required
    - `withheld_in_countries` string[], required
    - `followed_by` union
      - unknown
      - boolean
    - `following` union
      - unknown
      - boolean
    - `follow_request_sent` union
      - unknown
      - boolean
    - `has_extended_profile` union
      - unknown
      - boolean
    - `notifications` union
      - unknown
      - boolean
    - `advertiser_account_type` union
      - unknown
      - string
    - `business_profile_state` union
      - unknown
      - string
    - `require_some_consent` union
      - unknown
      - boolean
    - `object` 'AccountOwnerProfile', required
  - object
    - `provider` 'GMAIL', required
    - `email` string, required
    - `messages_total` number
    - `threads_total` number
    - `allowed_scope` string[]
    - `aliases` object[], required
      - `email` string, required
      - `display_name` string
      - `reply_to` string
      - `signature` string
      - `is_primary` boolean
      - `is_default` boolean
      - `verification_status` string
      - `is_treated_as_alias` string
    - `object` 'AccountOwnerProfile', required
  - object
    - `provider` 'OUTLOOK', required
    - `id` string, required
    - `email` string, required
    - `display_name` string, required
    - `given_name` string, required
    - `surname` string, required
    - `user_principal_name` string, required
    - `job_title` string, required
    - `mobile_phone` string, required
    - `preferred_language` string, required
    - `object` 'AccountOwnerProfile', required
  - object
    - `provider` 'IMAP', required
    - `connection_params` object, required
      - `imap` object, required
        - `username` string, required
        - `port` number, required
        - `host` string, required
      - `smtp` object, required
        - `username` string, required
        - `port` number, required
        - `host` string, required
    - `object` 'AccountOwnerProfile', required

## Other responses

- `401` — ## Unauthorized ### Disconnected account The account appears to be disconnected from the provider service. undefined
- `403` — ## Forbidden ### Insufficient permissions - Type: "errors/insufficient_permissions" Valid authentication but insufficient permissions to perform the request. ### Account restricted - Type: "errors/account_restricted" Access to this account has been restricted by the provider. ### Account mismatch - Type: "errors/account_mismatch" This action cannot be done with your account. ### Unknown authentication context - Type: "errors/unknown_authentication_context" An additional step seems necessary to complete login. Please connect to provider with your browser to find out more, then retry authentication. ### Session mismatch - Type: "errors/session_mismatch" Token User id does not match client session id. ### Feature not subscribed - Type: "errors/feature_not_subscribed" The requested feature has either not been subscribed or not been authenticated properly. ### Subscription required - Type: "errors/subscription_required" The action you're trying to achieve requires a subscription to provider's services. ### Resource access restricted - Type: "errors/resource_access_restricted" You don't have access to this resource. ### Action required - Type: "errors/action_required" An additional step seems necessary. Complete authentication on the provider's native application and try again.
- `404` — ## Not Found ### Resource not found. The requested resource were not found. User not found
- `422` — ## Unprocessable Entity ### Invalid account Provided account is not designed for this feature. undefined
- `429` — ## Too Many Requests ### Too many requests The provider cannot accept any more requests at the moment. Please try again later. undefined
- `500` — ## Internal Server Error ### Unexpected error - Type: "errors/unexpected_error" Something went wrong. {{moreDetails}} ### Provider error - Type: "errors/provider_error" The provider is experiencing operational problems. Please try again later. ### Authentication intent error - Type: "errors/authentication_intent_error" The current authentication intent was killed after failure. Please start the process again from the beginning.
- `501` — ## Not Implemented ### Missing feature Requested feature is planned but has not been implemented yet. undefined
- `503` — ## Service Unavailable ### No client session - Type: "errors/no_client_session" No client session is currently running. ### No channel - Type: "errors/no_channel" No channel to client session. ### Handler missing - Type: "errors/no_handler" Handler missing for that request. ### Network down - Type: "errors/network_down" Network is down on server side. Please wait a moment and retry. ### Service unavailable - Type: "errors/service_unavailable" Please try again later.
- `504` — ## Gateway Timeout ### Request timed out - Type: "errors/request_timeout" Request Timeout. Please try again, and if the issue persists, contact support.

---

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