Checks authentication & identity. https://docs.slack.dev/reference/methods/auth.test
(
self,
**kwargs,
)
| 2149 | return self.api_call("auth.revoke", http_verb="GET", params=kwargs) |
| 2150 | |
| 2151 | def auth_test( |
| 2152 | self, |
| 2153 | **kwargs, |
| 2154 | ) -> SlackResponse: |
| 2155 | """Checks authentication & identity. |
| 2156 | https://docs.slack.dev/reference/methods/auth.test |
| 2157 | """ |
| 2158 | return self.api_call("auth.test", params=kwargs) |
| 2159 | |
| 2160 | def auth_teams_list( |
| 2161 | self, |