Retrieves all email aliases for a user. The collection does not include the primary login for the user.
12345
The ID of the user.
Returns a collection of email aliases.
An unexpected client error.
curl -i -X GET "https://api.box.com/2.0/users/12345/email_aliases" \
-H "authorization: Bearer <ACCESS_TOKEN>"
{
"entries": [
{
"email": "alias@example.com",
"id": "11446498",
"is_confirmed": true,
"type": "email_alias"
}
],
"total_count": 5000
}