User

An account that belongs to a physical person.

Properties

PropertyTypeDescription
idIntegerThe ID of the user.
nameStringThe user's full name.
slugStringThe user's username.
avatarStringA url containing the user's avatar image.
primary_emailObjectThe user's primary email, if available. Primary email is only exposed to accounts that have the proper permission.

Example

{
  "id": 1,
  "name": "Brian",
  "slug": "brian",
  "avatar": "",
  "created_at": "2014-05-05T16:06:58+0000",
  "updated_at": "2014-05-05T16:06:58+0000",
  "primary_email": {
    "email": "[email protected]",
    "is_verified": false
  }
}