1
votes

I want to list the bots owned by any user through the slack api. The list of applications owned by a user is missing from user.info and user.list. Which api method could I use to list the applications any one user owns? Or vice versa if I have a bot application id how could I determine who owns said bot?

1

1 Answers

0
votes

The endpoint you are looking for is team.integrationLogs.

This method lists the integration activity logs for a team, including when integrations are added, modified and removed. This method can only be called by Admins.

You will have to parse through the log with all changes to get the current state, but this is the only endpoint with that kind of information.