Create Queue
Create a queue in draft status for a category. Use the update endpoint to activate it.
POST
/
social-media-posting
/
category
/
queues
Create Queue
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"categoryId": "<string>",
"locationId": "<string>",
"name": "<string>"
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({categoryId: '<string>', locationId: '<string>', name: '<string>'})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues', 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"
payload = {
"categoryId": "<string>",
"locationId": "<string>",
"name": "<string>"
}
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
Create Queue
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"categoryId": "<string>",
"locationId": "<string>",
"name": "<string>"
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({categoryId: '<string>', locationId: '<string>', name: '<string>'})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues', 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"
payload = {
"categoryId": "<string>",
"locationId": "<string>",
"name": "<string>"
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)