---
title: "Identify"
method: GET
path: "/v2/self"
tags: ["Meta"]
---

# Identify

`GET /v2/self`

Identify the current access token, the workspace it is linked to, and any permissions it has.

## Response `200`

Success

- union
  - object
    - `active` false, required
  - object
    - `active` boolean, required — Whether the token is currently active and usable.
    - `scope` string, required — A space-separated list of scopes associated with this token
    - `client_id` string, required — The app ID of the OAuth application that requested this token
    - `token_type` 'Bearer', required — The type of token, always Bearer for tokens acquired via the OAuth 2.0 flow.
    - `exp` number, nullable, required — The time at which this token will expire, if set, as a number of seconds since January 1 1970 UTC.
    - `iat` number, required — The time at which this token was issued, as a number of seconds since January 1 1970 UTC.
    - `sub` string, uuid, required — Since Bearer tokens grant Workspace-level permissions, this property contains the workspace_id.
    - `aud` string, required — The intended audience for this token, for Bearer tokens this is the same as the client_id.
    - `iss` 'attio.com', required — The issuer of the token. Always attio.com
    - `authorized_by_workspace_member_id` string, uuid, nullable, required — The ID of the workspace member who authorised this token initially, if known
    - `workspace_id` string, uuid, required — The ID of the workspace the token is scoped to.
    - `workspace_name` string, required — The name of the workspace the token is scoped to.
    - `workspace_slug` string, required — The slug of the workspace the token is scoped to.
    - `workspace_logo_url` string, uri, nullable, required — The logo URL of the workspace the token is scoped to.

---

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