Messaging is one of the core features of CometChat. We've thoughtfully created APIs to help you send and retrieve message history.
- Users can send messages to a user or group.
- No limit to the number of unread messages per user.
- No limit to the number of unread messages per group.
- Soft deleted messages will be available in the database but permanently deleted messages will not be available.
Properties and constraints:
- The maximum File size that can be uploaded per message is 100MB.
- For a group with more than 300 members, the conversations and unread message counts are not updated.
- Delivery and read receipts will be sent for a group of up to 300 online users.
- Data is an arbitrary JSON structure. It accepts utf8mb4. It can have any user defined properties. but the below properties have meaning for CometChat: text, attachments, custome_data, metadata
Note: The attachment size is separate. Here, the attachment is only the attachment properties (such as URL, size, etc.). The size must not exceed 10KB for the data object.- A message can have up to 25 tags with 100 characters per tag. The tags can be in any language. The character set must be UTF8mb4.
The following table lists the properties that the Message API supports.
Parameters | Type | Description |
---|---|---|
receiver | string | Specifies receiver of the message. Maximum length is 100 characters. Allowed characters: alpha-dash (a-z, 0-9 with -and _ ) without spaces |
receiverType | string | Specifies the type of receiver of the message. Either user or group. |
category | string | Specifies the category of the message. The available categories are message and custom. |
type | string | Specifies the type of the message. The available values are text, image, file, audio, video. |
data | nested object | Specifies a JSON object to store up to 10K characters (JSON stringified data) for text,metadata,customData,attachments. |
multipleReceivers | object | Specifies a list of receivers who will receive the message. It can have the below optional properties: uids: A string array of UIDs of the existing users to be added as receivers. guids: A string array of GUIDs of the existing groups to be added as receivers. Failure to sending a message to a receiver does not result into create send message API failure. However, the individual message failure can be seen in the error objects in uids or guids. Maximum of 25 receivers(uids and guids combined) can be added for a single message. |
tags | array of strings | (optional) Specifies a list of tags to be associated with certain users. Maximum of 25 tags can be associated with a single user. |
The following table lists the most common error codes that the Message API may return in case of an error:
Code | Description |
---|---|
ERR_EMPTY_RECEIVER | Indicates that the receiver cannot be empty. |
ERR_INVALID_RECEIVER_TYPE | Indicates that the invalid receiver type. |
ERR_CONVERSATION_NOT_FOUND | Indicates that the conversation id does not exists. |
ERR_CONVERSATION_NOT_ACCESSIBLE | Indicates that the conversation id not accessible to the user. 1. A user can access his own one-to-one conversations. 2. A user can access the group conversations if he is member of the group. |
ERR_USER_MESSAGE_DELETE_FAILED | Indicates that the API has failed to delete a one-to-one message. |
ERR_MESSAGE_ID_NOT_FOUND | Indicates that the message does not exist. |
ERR_INVALID_MESSAGE_DATA | Indicates invalid message body. |
ERR_EMPTY_MESSAGE_TEXT | Indicates empty messages text for a text message. |
ERR_INVALID_MESSAGE_TEXT | Indicates that the message text should be string. |
ERR_EMPTY_MESSAGE_CATEGORY | Indicates message category cannot be empty. |
ERR_INVALID_MESSAGE_CATEGORY | Indicates invalid message category. |
ERR_EMPTY_MESSAGE_TYPE | Indicates message type cannot be empty. |
ERR_INVALID_MESSAGE_TYPE | Indicates invalid message type. |
ERR_EMPTY_MESSAGE_FILE | Indicates empty FILE for the media message. |
ERR_MESSAGE_NOT_A_SENDER | Indicates that only sender can edit/delete the message. |
ERR_MESSAGE_NO_ACCESS | Indicates user does not have access to the message. 1. For one-to-one message user should either be sender or receiver of the message. 2. For group message user should be the member of the group. |
ERR_MESSAGE_ACTION_NOT_ALLOWED | Indicates that the message can not be edited or deleted. For example, Action messages cannot be edited or deleted by the API. |
ERR_EMPTY_CUSTOM_DATA | Indicates data.customData can not be empty for custom message. |
ERR_INVALID_MEDIA_MESSAGE | Indicates invalid media message. |
ERR_INVALID_CUSTOM_DATA | Indicates invalid data.customData. The customData should be valid JSON. |
ERR_INVALID_METADATA | Indicates invalid data.metadata. The metadata should be valid JSON. |
ERR_WRONG_MESSAGE_THREAD | Indicates conversation mismatch for parent and a new threaded message. |
ERR_MESSAGE_THREAD_NESTING | Indicates nested message threading. |
ERR_WRONG_MESSAGE_THREAD_CATEGORY | Indicates conversation mismatch for parent and a new threaded message. |