Logo
Zoom Public API Documentation

Update a message

PUT {{baseUrl}}/chat/users/:userId/messages/:messageId

Edits a chat message that you previously sent to either a contact or a channel in Zoom by providing the ID of the message as the value of the messageId parameter. You can get the ID from the List User's Chat Messages API. Additionally, as a query parameter, you must provide either the contact's email address of the contact or the Channel ID of the channel where the message was sent.

For user-level apps, pass the me value instead of the userId parameter.

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has the Edit permission for Chat Messages.

Scope: chat_message:write,chat_message:write:admin
Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string




RESPONSES

status





Curl
curl -X PUT 'https://api.zoom.us/v2/chat/users/:userId/messages/:messageId' -H 'Content-Type: application/json' -d '{"message":"\u003cstring\u003e","to_channel":"\u003cstring\u003e","to_contact":"\u003cemail\u003e","file_ids":["\u003cstring\u003e","\u003cstring\u003e"]}'

ENDPOINTS