# org_member


[API catalog](/reference/api/) · [Docker Hub overview](/reference/api/hub/latest/) · [Product manual](https://docs.docker.com/docker-hub/) · [OpenAPI specification](/reference/api/hub/latest.yaml)

API version: 2-beta



Schema constraints and annotations:

```json
{
  "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"
    }
  }
}
```



