Fetch Queue Slots
Returns paginated slot information (scheduledDateTime, isSkipped) for queue items. Pass sessionId for draft items.
POST
Fetch Queue Slots
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.
Returns paginated slot information (scheduledDateTime, isSkipped) for queue items. Pass sessionId for draft items.
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/slots \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"sessionId": "<string>",
"skip": 123,
"limit": 123
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({sessionId: '<string>', skip: 123, limit: 123})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/slots', 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}/slots"
payload = {
"sessionId": "<string>",
"skip": 123,
"limit": 123
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/slots \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"sessionId": "<string>",
"skip": 123,
"limit": 123
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({sessionId: '<string>', skip: 123, limit: 123})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/slots', 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}/slots"
payload = {
"sessionId": "<string>",
"skip": 123,
"limit": 123
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)