Per the User API docs: "Array of additional information to include on the user record. “locale”, “avatar_url”, “permissions”, “email”, and “effective_locale” will always be returned"
However, the response does not include the email field, even with users that have email addresses in their Account settings.
```
{
"id": [user id],
"name": "[fname lname]",
"created_at": "[created at]",
"sortable_name": "[lname, fname]",
"short_name": "[fname lname]",
"avatar_url": "[avatar url]",
"last_name": "[lname]",
"first_name": "[fname]",
"locale": null,
"effective_locale": "en",
"permissions": {
"can_update_name": false,
"can_update_avatar": true,
"limit_parent_app_web_access": false
}
```
Is there a trick to getting the email field returned with the User API request? I've tried adding ?include[]=email as well, but no luck.