Update Queue Item
Update the content or variations of a specific item within a category queue.
PUT
/
social-media-posting
/
category
/
queues
/
{queueId}
/
items
/
{itemId}
Update Queue Item
curl --request PUT \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/items/{itemId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"content": "<string>",
"variations": [
{}
]
}
'const options = {
method: 'PUT',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({content: '<string>', variations: [{}]})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/items/{itemId}', 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/{itemId}"
payload = {
"content": "<string>",
"variations": [{}]
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)Last modified on March 8, 2026
Was this page helpful?
⌘I
Update Queue Item
curl --request PUT \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/items/{itemId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"content": "<string>",
"variations": [
{}
]
}
'const options = {
method: 'PUT',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({content: '<string>', variations: [{}]})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/items/{itemId}', 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/{itemId}"
payload = {
"content": "<string>",
"variations": [{}]
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)