Skip to content

get_me

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/get_me
HandlerOperatelyWeb.Api.Queries.GetMe

Authentication#

  • Requires a valid API token.
  • Read-only and full-access tokens can execute this query.

Inputs#

FieldTypeRequiredNullableDefault
include_managerbooleanNoYes-

Outputs#

FieldTypeRequiredNullable
meperson objectNoYes

cURL Example#

Copied
curl --request GET \
  --url "https://app.operately.com/api/external/v1/get_me?include_manager=true" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}"

Response Example#

{
  "me": {
    "access_level": 123,
    "agent_def": "<agent_def>",
    "avatar_blob_id": "value",
    "avatar_url": "value",
    "company": "<company>",
    "description": "value",
    "email": "value",
    "full_name": "value",
    "has_open_invitation": true,
    "id": "value",
    "invite_link": "<invite_link>",
    "manager": "<person>",
    "notify_about_assignments": true,
    "notify_on_mention": true,
    "peers": [
      "<person>"
    ],
    "permissions": "<person_permissions>",
    "reports": [
      "<person>"
    ],
    "send_daily_summary": true,
    "show_dev_bar": true,
    "suspended": true,
    "timezone": "value",
    "title": "value",
    "type": "value"
  }
}