Upload CSV
Upload a CSV file containing social media posts for bulk scheduling.
POST
/
social-media-posting
/
{locationId}
/
csv
Upload CSV
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/{locationId}/csv \
--header 'Authorization: <authorization>' \
--header 'Content-Type: multipart/form-data' \
--header 'Version: <version>' \
--form file='@example-file'const form = new FormData();
form.append('file', '<string>');
const options = {
method: 'POST',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
options.body = form;
fetch('https://services.leadconnectorhq.com/social-media-posting/{locationId}/csv', 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}/csv"
files = { "file": ("example-file", open("example-file", "rb")) }
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.post(url, files=files, headers=headers)
print(response.text)Last modified on March 8, 2026
Was this page helpful?
Upload CSV
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/{locationId}/csv \
--header 'Authorization: <authorization>' \
--header 'Content-Type: multipart/form-data' \
--header 'Version: <version>' \
--form file='@example-file'const form = new FormData();
form.append('file', '<string>');
const options = {
method: 'POST',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
options.body = form;
fetch('https://services.leadconnectorhq.com/social-media-posting/{locationId}/csv', 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}/csv"
files = { "file": ("example-file", open("example-file", "rb")) }
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.post(url, files=files, headers=headers)
print(response.text)