Skip to main content
GET
/
api
/
v1
/
organizations
/
{org_id}
/
users
/
{user_id}
/
tokens
List User Tokens
curl --request GET \
  --url https://anaconda.com/api/v1/organizations/{org_id}/users/{user_id}/tokens \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "expires_at": "<string>",
      "metadata": {},
      "revoked": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token obtained by authenticating with service account credentials (client_id and client_secret).

See the Getting started page for the full authentication flow.

Path Parameters

org_id
string
required

Your organization ID, found in your organization's URL: anaconda.com/app/organizations/<ORG_ID>/.

user_id
string<uuid>
required

The unique identifier of the user whose tokens to retrieve.

Response

List of user tokens

items
object[]
required

The list of tokens for the user.