Fetch Queue Items
Returns paginated queue items. Pass sessionId to retrieve draft items from an edit session.
POST
/
social-media-posting
/
category
/
queues
/
{queueId}
/
items
Fetch Queue Items
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/items \
--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}/items', 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}/items"
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)Last modified on March 8, 2026
Was this page helpful?
⌘I
Fetch Queue Items
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/items \
--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}/items', 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}/items"
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)