Sign in

Update Message

documented

Update a chat message's content.

POST /api/v1/chat.updateMessagesno implementation yet0 runs
No 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_host}}/api/v1/chat.update" \
  -X POST \
  -H "X-Auth-Token: {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-User-Id: {{OAUTH2_USER_ID}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"roomId": "{{$room_id}}", "msgId": "{{$msg_id}}", "text": "{{$text}}", "previewUrls": ["{{$previewUrl1}}","{{$previewUrl2}}"]}'