Endpoint
POST /smm/cancel
Body parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
order_id | integer | Yes | ID of the SMM order to cancel. |
Example request
curl -X POST https://api.telewing247.com/api/api/v1/public/smm/cancel \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ak_YOUR_API_KEY_HERE" \
-d '{
"order_id": 12345
}'
const response = await fetch(
"https://api.telewing247.com/api/api/v1/public/smm/cancel",
{
method: "POST",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: "Bearer ak_YOUR_API_KEY_HERE",
},
body: JSON.stringify({
order_id: 12345,
}),
}
);
const data = await response.json();