Delete Messages
Delete message is a feature that is found in modern messaging apps that allows the user to delete the message once it is sent. Once you sent the message, you can able to delete the messages by using built-in SDK methods.
#
Delete for MeIf you want to delete the messages for yourself only then you can use the below method.
caution
If DeleteMessage feature is unavailable for your plan, then it will throw 403 exception
Note: The messages will not be deleted from the recipient.
#
Delete for EveryoneIf you want to delete the messages for yourself and the receiver then you can use the below method. The messages will also be deleted from the recipient.
caution
If DeleteMessage feature is unavailable for your plan, then it will throw 403 exception
#
Method ParamsStatus | Description | Type | Required |
---|---|---|---|
TO_JID | JID of the To User/Group | JID String | true |
MESSAGE_IDS | Array of To Message Ids | Array | true |
#
Clear Chat MessagesThe clear chat message is a feature that allows users to delete chat messages.
If you want to clear the messages for the entire chat, or multiple chats then you can utilize the below methods.
#
Clear ChatYou can clear the messages for any chat by using the below method. The messages will not be deleted from the recipient.
caution
If Clear Chat feature is unavailable for your plan, then it will throw 403 exception
#
Method ParamsStatus | Description | Type | Required |
---|---|---|---|
TO_JID | JID of the To User/Group | JID String | true |
FAVOURITES | Whether to Delete Favourites Messages or not | Boolean | false |
LAST_MSG_ID | lastMsgId which the message is send | String | false |
#
Delete ChatYou can delete the chat (from recent chat) by using the below method.
caution
If Delete Chat feature is unavailable for your plan, then it will throw 403 exception
#
Method ParamsStatus | Description | Type | Required |
---|---|---|---|
TO_JID | JID of the To User/Group | JID String | true |
FAVOURITES | Whether to Delete Favourites Messages or not | Boolean | false |
#
Clear All ChatYou can clear all conversation by using the below method.