Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Slack - Show fullname of user instead of username

Tags:

slack-api

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?

like image 612
khan Avatar asked Feb 23 '15 14:02

khan


People also ask

Can you change someones display name in Slack?

Edit a member's full name, display name, or usernameSelect Settings & administration from the menu, then click Manage members. Click the three dots icon to the right of the member's name you'd like to edit. Click Edit info. Enter the new full name, display name, or username and click Save.

How do I show my display name on Slack?

Select Settings & administration, then Workspace settings from the menu. Scroll down to the Name Display section and click Expand. Check the preference to display full names instead of display names. Click Save.

Are Slack display names unique?

Display names are no longer unique and multiple users will be able to share the same display name as a result. When you type a few letters after the @ sign you will be able to see their full names also.

Do people use real names on Slack?

The full name is obviously intended to be your full name while the display name is more of a nickname, although users may also just prefer to use their first names. By default, Slack uses both your full name and your display name to refer to you in different places throughout the app.


1 Answers

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": "[email protected]",             "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     },     ... ] 

}

like image 84
bretterer Avatar answered Sep 28 '22 09:09

bretterer