Share feedback
Answers are generated based on the documentation.

Schema

org_member

email

Type: string

User's email address
All schema constraints and annotations
{
  "description": "User's email address",
  "example": "example@docker.com",
  "type": "string"
}
groups

Type: array

Groups (Teams) that the user is member of
Array item

Type: string

All schema constraints and annotations
{
  "type": "string"
}
All schema constraints and annotations
{
  "description": "Groups (Teams) that the user is member of",
  "example": [
    "developers",
    "owners"
  ],
  "items": {
    "type": "string"
  },
  "type": "array"
}
is_guest

Type: boolean

If the organization has verified domains, members that have email addresses outside of those domains will be flagged as guests.
All schema constraints and annotations
{
  "description": "If the organization has verified domains, members that have email addresses outside of those domains will be flagged as guests.",
  "example": false,
  "type": "boolean"
}
last_desktop_version

Type: string

Last desktop version the user used. To access this field, you must have insights visible for your organization. See Insights.
All schema constraints and annotations
{
  "description": "Last desktop version the user used. To access this field, you must have insights visible for your organization. See\n[Insights](https://docs.docker.com/accounts/organization/insights/#view-insights-for-organization-users).\n",
  "example": "4.29.0",
  "type": "string"
}
last_logged_in_at

Type: string | null

Last time the user logged in. To access this field, you must have insights visible for your organization. See Insights.
All schema constraints and annotations
{
  "description": "Last time the user logged in. To access this field, you must have insights visible for your organization. See\n[Insights](https://docs.docker.com/accounts/organization/insights/#view-insights-for-organization-users).\n",
  "example": "2021-01-05T21:06:53.506400Z",
  "format": "date-time",
  "type": [
    "string",
    "null"
  ]
}
last_seen_at

Type: string | null

Last time the user was seen. To access this field, you must have insights visible for your organization. See Insights.
All schema constraints and annotations
{
  "description": "Last time the user was seen. To access this field, you must have insights visible for your organization. See\n[Insights](https://docs.docker.com/accounts/organization/insights/#view-insights-for-organization-users).\n",
  "example": "2021-01-05T21:06:53.506400Z",
  "format": "date-time",
  "type": [
    "string",
    "null"
  ]
}
primary_email

Type: string

The user's email primary address.
All schema constraints and annotations
{
  "deprecated": true,
  "description": "The user's email primary address.",
  "example": "example@docker.com",
  "type": "string"
}
role

Type: string

The member's role in the organization (Owner, Editor, Member, or Invitee for pending invites).
All schema constraints and annotations
{
  "description": "The member's role in the organization (`Owner`, `Editor`,\n`Member`, or `Invitee` for pending invites).\n",
  "enum": [
    "Owner",
    "Editor",
    "Member",
    "Invitee"
  ],
  "example": "Owner",
  "type": "string"
}
All constraints apply

Schema: user

All schema constraints and annotations
{
  "allOf": [
    {
      "$ref": "#/components/schemas/user"
    }
  ],
  "examples": [
    {
      "date_joined": "2021-01-05T21:06:53.506400Z",
      "email": "example@docker.com",
      "full_name": "Jon Snow",
      "groups": [
        "owners"
      ],
      "id": "0ab70deb065a43fcacd55d48caa945d8",
      "is_guest": false,
      "role": "Owner",
      "type": "User",
      "username": "dockeruser"
    }
  ],
  "properties": {
    "email": {
      "description": "User's email address",
      "example": "example@docker.com",
      "type": "string"
    },
    "groups": {
      "description": "Groups (Teams) that the user is member of",
      "example": [
        "developers",
        "owners"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "is_guest": {
      "description": "If the organization has verified domains, members that have email addresses outside of those domains will be flagged as guests.",
      "example": false,
      "type": "boolean"
    },
    "last_desktop_version": {
      "description": "Last desktop version the user used. To access this field, you must have insights visible for your organization. See\n[Insights](https://docs.docker.com/accounts/organization/insights/#view-insights-for-organization-users).\n",
      "example": "4.29.0",
      "type": "string"
    },
    "last_logged_in_at": {
      "description": "Last time the user logged in. To access this field, you must have insights visible for your organization. See\n[Insights](https://docs.docker.com/accounts/organization/insights/#view-insights-for-organization-users).\n",
      "example": "2021-01-05T21:06:53.506400Z",
      "format": "date-time",
      "type": [
        "string",
        "null"
      ]
    },
    "last_seen_at": {
      "description": "Last time the user was seen. To access this field, you must have insights visible for your organization. See\n[Insights](https://docs.docker.com/accounts/organization/insights/#view-insights-for-organization-users).\n",
      "example": "2021-01-05T21:06:53.506400Z",
      "format": "date-time",
      "type": [
        "string",
        "null"
      ]
    },
    "primary_email": {
      "deprecated": true,
      "description": "The user's email primary address.",
      "example": "example@docker.com",
      "type": "string"
    },
    "role": {
      "description": "The member's role in the organization (`Owner`, `Editor`,\n`Member`, or `Invitee` for pending invites).\n",
      "enum": [
        "Owner",
        "Editor",
        "Member",
        "Invitee"
      ],
      "example": "Owner",
      "type": "string"
    }
  }
}