Who am I
Identify yourself from your API token. Returns the organizations your token
can access — with the organization you are currently acting as marked
active: true — along with your user id, the permissions your token grants,
and when the token expires.
This is a safe, read-only call: it does not create or change anything. Use it to look up your organization’s name and id (needed by other endpoints) or to check what your token is allowed to do.
Authorizations
Biscuit-based bearer token. Obtain tokens from the Adaptyv Portal or via the /tokens endpoint. Tokens encode organization membership and role-based capabilities; the API verifies the token's cryptographic signature and authorization claims before processing requests. Use /tokens/attenuate to create restricted tokens for delegation.
Response
Caller identity and access summary
Identity and access summary for the calling token.
Every organization the token can access. For most tokens this is a
single organization; exactly one entry is flagged active.
The permissions this token grants, as resource:action strings (for
example experiment:create). Use these to learn what the token can do
before attempting an operation.
[
"organization:read",
"experiment:read",
"experiment:create"
]Identifier of the organization the token is currently acting as. This is
the organization flagged active: true in organizations.
"019b8da3-4a91-16c6-fa94-619212bee6a6"
When the token expires (ISO 8601 / RFC 3339, UTC). null for tokens
without a recorded expiry.
"2026-12-31T23:59:59Z"
The authenticated user's unique identifier.
"019b8da3-1111-2222-3333-444455556666"