Set Other User's Presence - Admin

Sets the presence state of a another user.

Set presence information for a particular user.

post
Query parameters
softanyoptional

If true, the user's current status is taken into consideration. If the user is currently OFFLINE, the user's presence will still be OFFLINE, but the new presence will take effect when the user comes online. If the user is currently online, the user's activity state will be applied to the presence if applicable. (e.g. if you are setting their presence to AVAILABLE, but the user is currently idle, their status will be represented as AWAY)

Header parameters
sessionTokenanyrequired

Session authentication token.

Body
all ofoptional

Responses
curl -L \
  --request POST \
  --url 'yourpodURL.symphony.com/pod/v3/user/presence' \
  --header 'Content-Type: application/json' \
  --data '{
    "category": "AWAY",
    "userId": 14568529068038
  }'
{
  "category": "AWAY",
  "userId": 14568529068038,
  "timestamp": 1533928483800
}

🚧 User role requirement

To set the presence of another user, this endpoint requires to be called by a service user with the "User Provisioning" Entitlement.

Last updated

Was this helpful?