My Project
  1. chat
My Project
  • Default module
    • Schemas
      • Sample Schemas
        • Pet
        • Category
        • Tag
  • Tirelire
    • Gorups
      • Get groups
      • Create group
      • update group
      • leave group
      • delete group
    • Tickets
      • create ticket
      • get ticket by group
      • update status
    • chat
      • send message to chat
        POST
      • New Request
        GET
    • Auth
      • login
      • Register
  1. chat

send message to chat

POST
/api/chat/send

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params multipart/form-data

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/chat/send' \
--header 'Authorization: Bearer <token>' \
--form 'message="somthing here as a text message in the chat"' \
--form 'groupId=""'
Response Response Example
{}
Modified at 2025-10-17 14:52:15
Previous
update status
Next
New Request
Built with