Sending Text Message
POST/messages
This endpoint is used to send messages of different types.
1. Sending Text Message: Send a simple text message.
2. Sending File Message: Send a document file.
3. Sending Image Message: Send an image file.
4. Sending List Message: Send a message containing a list.
5. Sending Location Message: Send a message with geographical location.
6. Sending Template Message: Send a message using a predefined template.
Request
- application/json
Body
required
- Sending Text Message Request
oneOf
device stringrequired
receiver stringrequired
type stringrequired
message stringrequired
simulate_typing int32required
Responses
- 200
- 403
- 404
- 422
General Success Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
HTTP Status Code
message string
HTTP Status Message
{
"status": 200,
"message": "Ok"
}
General Forbidden Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Forbidden
message string
HTTP Status Message
{
"status": 403,
"message": "Forbidden"
}
General Not Found Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Not Found
message string
HTTP Status Message
{
"status": 404,
"message": "Not Found"
}
General Validation Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
HTTP Status Code
message string
HTTP Status Message
errors string[]
{
"status": 422,
"message": "Validation Error ",
"errors": [
"string"
]
}
Loading...