Skip to main content
GET
/
api
/
v1
/
organizations
/
{org_id}
/
users
List Users
curl --request GET \
  --url https://anaconda.com/api/v1/organizations/{org_id}/users \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "email": "jsmith@example.com",
      "subscriptions": [
        "<string>"
      ],
      "first_name": "<string>",
      "last_name": "<string>",
      "groups": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>",
          "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z",
          "user_count": 123
        }
      ]
    }
  ]
}

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>/.

Query Parameters

include_groups
boolean
default:false

Set to true to include each user's group memberships in the response.

Response

List of organization users

items
object[]
required

A list of users in the organization.