I want to trigger a slash command in Slack every day at a certain time. Specifically, I want to clear my status every night at midnight.
From the documentation it seems like the only way to do this would be via an Incoming Webhook. However POSTing with the following JSON body just creates a message in Slack /status clear
and does not actually run the command.
'{"text":"/status clear"}'
It also posts the message on behalf of the app associated with the webhook, not under my username.
Is there any way to invoke a slash command for my user from outside the official Slack app?