Start Edit Session
Create a draft copy of queue items for editing. Changes are staged until saved or discarded.
POST
Start Edit Session
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.
Create a draft copy of queue items for editing. Changes are staged until saved or discarded.
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/edit/start \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '{}'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/edit/start', 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}/edit/start"
payload = {}
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}/edit/start \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '{}'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId}/edit/start', 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}/edit/start"
payload = {}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)