Update Custom User Status
documentedUpdate a custom user status.
POST /api/v1/custom-user-status.updateContent Managementno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://rocket.chat/api/v1/custom-user-status.update" \
-X POST \
-H "X-Auth-Token: {{OAUTH2_ACCESS_TOKEN}}" \
-H "X-User-Id: {{$user_id}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"_id": "{{$custom_status_id}}", "name": "{{$name}}", "statusType": "{{$statusType}}"}' \
&& echo "Source: Rocket.Chat API docs - /api/v1/custom-user-status.update"