Fetch Calendar List
Return scheduled posts from active queues within a date range, with optional filtering by categories and accounts.
POST
/
social-media-posting
/
category
/
queues
/
list
/
calendar
Fetch Calendar List
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/list/calendar \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"locationId": "<string>",
"fromDate": "2023-11-07T05:31:56Z",
"toDate": "2023-11-07T05:31:56Z",
"categoryIds": [
"<string>"
],
"accountIds": [
"<string>"
]
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
locationId: '<string>',
fromDate: '2023-11-07T05:31:56Z',
toDate: '2023-11-07T05:31:56Z',
categoryIds: ['<string>'],
accountIds: ['<string>']
})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/list/calendar', 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/list/calendar"
payload = {
"locationId": "<string>",
"fromDate": "2023-11-07T05:31:56Z",
"toDate": "2023-11-07T05:31:56Z",
"categoryIds": ["<string>"],
"accountIds": ["<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
Fetch Calendar List
curl --request POST \
--url https://services.leadconnectorhq.com/social-media-posting/category/queues/list/calendar \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'Version: <version>' \
--data '
{
"locationId": "<string>",
"fromDate": "2023-11-07T05:31:56Z",
"toDate": "2023-11-07T05:31:56Z",
"categoryIds": [
"<string>"
],
"accountIds": [
"<string>"
]
}
'const options = {
method: 'POST',
headers: {
Authorization: '<authorization>',
Version: '<version>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
locationId: '<string>',
fromDate: '2023-11-07T05:31:56Z',
toDate: '2023-11-07T05:31:56Z',
categoryIds: ['<string>'],
accountIds: ['<string>']
})
};
fetch('https://services.leadconnectorhq.com/social-media-posting/category/queues/list/calendar', 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/list/calendar"
payload = {
"locationId": "<string>",
"fromDate": "2023-11-07T05:31:56Z",
"toDate": "2023-11-07T05:31:56Z",
"categoryIds": ["<string>"],
"accountIds": ["<string>"]
}
headers = {
"Authorization": "<authorization>",
"Version": "<version>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)