How do we mention or tag a group member using Slack's Block Kit Builder?

Viewed 13

I know I can tag a member using <@XXXXXXX> where XXXXX=member id. Is there any way to do the same, but tagging slack groups instead ? (slack groups does not seem to have a member id associated to it...)

1 Answers

Very similar to how you would mention a user, you show us we can do this by doing <@UXXXXXXX>. A public channel would require the use of a # symbol instead of the @ symbol. <#CXXXXXXX>.

You can check out the Slack Documentation for more ways to mention users and user groups.

Example:

Why not join <#C024BE7LR>?

Note: the channel needs to be public.

Related