API Reference
Delete Scheduled Post
Permanently remove a scheduled post from your calendar before it publishes.
DELETE/scheduled-posts/:id
Authenticate with a Bearer
sv_ token. Returns 404 if the id does not exist or is not accessible. See Authentication.Path parameters
Full URL: https://shareviral-server-production.up.railway.app/api/v1/developer/scheduled-posts/:id
| Parameter | Type | Description |
|---|---|---|
idrequired | string | Scheduled post id to delete. |
Examples
cURL
curl -X DELETE https://shareviral-server-production.up.railway.app/api/v1/developer/scheduled-posts/abc123 \
-H "Authorization: Bearer sv_your_api_token"Response
200 OK
{
"success": true
}