Delete Active Post
Delete a currently scheduled post and automatically trigger scheduling of the next available post in the queue.
DELETE
Delete Active Post
Last modified on March 8, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete a currently scheduled post and automatically trigger scheduling of the next available post in the queue.
curl --request DELETE \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/active-post \
--header 'Authorization: <authorization>' \
--header 'Version: <version>'const options = {
method: 'DELETE',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/active-post', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/active-post"
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.delete(url, headers=headers)
print(response.text)Was this page helpful?
curl --request DELETE \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/active-post \
--header 'Authorization: <authorization>' \
--header 'Version: <version>'const options = {
method: 'DELETE',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/active-post', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/active-post"
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.delete(url, headers=headers)
print(response.text)