I have been following the documentation to select a user from my workspace using the Slack app API kit.
However, once I select a user this is the payload that is show in the action listener
{
type: 'users_select',
action_id: 'user_select',
block_id: 'section678',
selected_user: 'U02GL7WT4JX',
action_ts: '1633620609.616449'
}
Technically, I do have the user via the ID, but I was hoping that I would be able to get the slack display name rather than the id. I've been looking at the slack documentation but I see no other way to get the username other than using the Slack REST API.
I would rather get the slack display name from using the App kit rather than the slack rest api. Is this possible?