Edit Post
Update an existing social media post by its ID.
PUT
/
social-media-posting
/
{locationId}
/
posts
/
{id}
Edit Post
curl --request PUT \
--url https://services.leadconnectorhq.com/social-media-posting/{locationId}/posts/{id} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"summary": "<string>",
"scheduleTime": "2023-11-07T05:31:56Z"
}
'const options = {
method: 'PUT',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({summary: '<string>', scheduleTime: '2023-11-07T05:31:56Z'})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/{locationId}/posts/{id}', 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/{locationId}/posts/{id}"
payload = {
"summary": "<string>",
"scheduleTime": "2023-11-07T05:31:56Z"
}
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
Edit Post
curl --request PUT \
--url https://services.leadconnectorhq.com/social-media-posting/{locationId}/posts/{id} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"summary": "<string>",
"scheduleTime": "2023-11-07T05:31:56Z"
}
'const options = {
method: 'PUT',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({summary: '<string>', scheduleTime: '2023-11-07T05:31:56Z'})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/{locationId}/posts/{id}', 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/{locationId}/posts/{id}"
payload = {
"summary": "<string>",
"scheduleTime": "2023-11-07T05:31:56Z"
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)