Skip to content

get_account

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/get_account
HandlerOperatelyWeb.Api.Queries.GetAccount

Authentication#

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

Inputs#

This endpoint has no input fields.

Outputs#

FieldTypeRequiredNullable
accountaccount objectNoYes

cURL Example#

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

Response Example#

{
  "account": {
    "full_name": "value",
    "site_admin": true
  }
}