Fetch Queue by ID
Retrieve the details of a single category queue by its unique ID, including error counts.
GET
Fetch Queue by ID
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.
Retrieve the details of a single category queue by its unique ID, including error counts.
curl --request GET \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId} \
--header 'Authorization: <authorization>' \
--header 'Version: <version>'const options = {
method: 'GET',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}', 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}"
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?
curl --request GET \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId} \
--header 'Authorization: <authorization>' \
--header 'Version: <version>'const options = {
method: 'GET',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}', 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}"
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.get(url, headers=headers)
print(response.text)