An account that belongs to a physical person.
Properties
| Property | Type | Description | 
|---|---|---|
| id | Integer | The ID of the user. | 
| name | String | The user's full name. | 
| slug | String | The user's username. | 
| avatar | String | A url containing the user's avatar image. | 
| primary_email | Object | The 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
  }
}
