Get STOPs of a campaign
This method allows you to retrieve the STOPs of a campaign.
GET
/campaign/:id/blacklist
Query Parameters
id
required
|
The campaign id |
Examples
HTTP
httpCopyGET /campaign/18969398/blacklist 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",
"stops": [
{
"destination": "33612345678",
"info1": "Ricky",
"info2": "Gervais",
"info3": null,
"info4": null,
"date": "2025-05-05 03:49:17"
},
{
"destination": "33612345677",
"info1": "Richard",
"info2": "Dawkins",
"info3": null,
"info4": null,
"date": "2025-05-05 03:49:17"
}
]
}