40

Is there a way that in slack, we can show fullname of a user in the channel user list, instead of just the username? Since we have multiple teams and not all the people are familiar with usernames that users pick from different teams, its really difficult to identify who is who unless one goes to their profile or checks their fullname manually.

So, is there a way to display the full usernames for users in the list instead of just the usernames?

khan
  • 7,005
  • 15
  • 48
  • 70

2 Answers2

73

For the application side

Yes there is. In the window for slack, at the bottom left by your username, there is an up arrow. Click on that and you will see a preferences option.

Slack Preferences

Once you are in Preferences, Click on Message Display. Within this option, you will find "Display real names instead of usernames". Make sure this is checked and click on done.

Message Display

For the API Side

Since this is tagged Slack-api and I'm not sure if this is what you are talking about, within the response of the API from the users.list method, it will return the First/Last name, so you would just have to use it in whatever you are doing. Reference the Docs for the Slack API

{
"ok": true,
"members": [
    {
        "id": "U023BECGF",
        "name": "bobby",
        "deleted": false,
        "color": "9f69e7",
        "profile": {
            "first_name": "Bobby",
            "last_name": "Tables",
            "real_name": "Bobby Tables",
            "email": "bobby@slack.com",
            "skype": "my-skype-name",
            "phone": "+1 (123) 456 7890",
            "image_24": "https:\/\/...",
            "image_32": "https:\/\/...",
            "image_48": "https:\/\/...",
            "image_72": "https:\/\/...",
            "image_192": "https:\/\/..."
        },
        "is_admin": true,
        "is_owner": true,
        "has_2fa": false,
        "has_files": true
    },
    ...
]

}

bretterer
  • 5,693
  • 5
  • 32
  • 53
  • 2
    Is there a way to only display first names? – B T Aug 20 '15 at 23:34
  • 1
    This doesn't seem to be very useful unless users have actually inputed their first and last name in their preferences, which is NOT required during sign-up. – gaoagong Sep 17 '15 at 23:05
  • 3
    And is there a way to change the labels that users pick for themselves? – Yevgeniy Afanasyev Oct 16 '15 at 01:09
  • 1
    In Version 2.5.1 (on Mac), it's moved a little. Your username is in the top left, and this preference is under "Messages & Media" > Display Options – allicarn Mar 06 '17 at 14:46
  • In newer Windows versions, you can access it by going to File > Preferences > "Messages & Media" > Display Options – TomNash Sep 07 '17 at 15:43
1

If you are channel owner, you can go to: Team settings -> Name Display -> Expand -> Display first and last names

Kirill
  • 6,762
  • 4
  • 51
  • 81