Get replies of a campaign
This method allows you to retrieve the replies of a campaign.
GET
/campaign/:id/mo
Query Parameters
id
required
|
The campaign id |
Examples
HTTP
httpCopyGET /campaign/18969398/mo HTTP/1.1
Host: api.smsfactor.com
Accept: application/json
Authorization: Bearer your.token
Result Format
Can I retrieve my campaigns created on the platform ?
Our platform uses another API (not available to users). You cannot use the API to retrieve campaigns created on the platform.
JSON
{
"status": 1,
"message": "OK",
"replies": [
{
"destination": 33612345678,
"message": "First response"
"info1": "Ricky",
"info2": "Gervais"
"date": "2025-05-12 16:12:41"
},
{
"destination": 33612345677,
"message": "Second repsonse"
"info1": "Richard",
"info2": "Dawkins"
"date": "2025-05-12 16:12:41"
}
]
}