- Returning.AI
- Auth
- User
- Server
- Category
- Role
- Channel
- Language Setting
- Leaderboard
- Badge
- Gamification
- Api Token
- Custom Userfields
- Integration
send message
Developing
POST
integration.returning.ai/apis/v1/messages
Request
Header Params
Authorization
string
optional
Body Params application/json
channelId
string
required
message
string
required
sender
string
required
Example
{
"channelId": "<channel-id-from-get-channel-list>",
"message": "<message-you-want-to-send>",
"sender": "<username-or-email-of-user>"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.returning.ai/api/v1integration.returning.ai/apis/v1/messages' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"channelId": "<channel-id-from-get-channel-list>",
"message": "<message-you-want-to-send>",
"sender": "<username-or-email-of-user>"
}'
Responses
🟢200Success
application/json
Body
status
string
required
message
string
required
Example
{
"status": "success",
"message": "Message send successfully"
}
Modified at 2025-03-21 04:06:40