Manipulate Presence

Learn to use Slack API calls to manipulate presence.

Overview

We’ll cover the following endpoints from Slack’s Users API in this lesson.

  1. users.setPresence: This endpoint manually sets user presenceThis is a flag with the value of either “auto” or “away”. When it is set to “away” the user is shown as non-active..
  2. users.getPresence: This endpoint gets user presence information.

Even though our application can set its presence with our current token, this isn’t that ...