我正在尝试使用 SCIM API更新用户的当前状态字段。我知道可以使用users.profile.set
POST API更新此字段。如何profile
使用 SCIM API 更新用户对象的块?我查看了 SCIM API 支持的用户属性,但在此列表中没有看到profile
块或嵌套字段,例如status_text
, 。status_emoji
status_expiration
问问题
141 次
1 回答
1
You cannot set presence
using SCIM apis.
SCIM APIs for Users work only on User Attributes
User Attributes
Attributes are the details associated with a user's account. These are the details that someone would typically set in their profile (for example, by clicking the Edit Profile button in the Slack application).
https://api.slack.com/scim#scim-api-endpoints__users__user-attributes
To set 'User Presence' you'll need regular slack APIs but that would need the user's token.
于 2021-09-03T03:20:31.847 回答