Skip to main content
GET
/
accounts
/
current
Get current account
curl --request GET \
  --url https://api.agentic.scope3.com/api/v2/accounts/current \
  --header 'Authorization: Bearer <token>'
{
  "id": 100,
  "company": "Acme Inc",
  "name": "Acme",
  "role": "ADMIN"
}

Authorizations

Authorization
string
header
required

API key or access token

Response

Get current account

Current customer account context

id
integer
required

Customer ID

Required range: -9007199254740991 <= x <= 9007199254740991
Example:

100

company
string
required

Company name

Example:

"Acme Inc"

name
string
required

Display name

Example:

"Acme"

role
string

User role on this customer

Example:

"ADMIN"