Reputation: 199
Is there a way to get user join date to the team via Slack API? The best would be to have all the users and their join dates in the same JSON. Searched through https://api.slack.com/methods , but was not able to find such a method.
Upvotes: 2
Views: 2702
Reputation: 32827
Its in the API method team.accessLogs
. There you get the property date_first
, which is the date when that user first logged into Slack.
This method is for payed teams only. But you can track that information yourself with a small app that listens to team_join
event.
Upvotes: 5