Skip to main content
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: Bearer <token>' \
  --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>"
  ]
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required
Example:

"Bearer <token>"

Version
string
required
Example:

"2021-07-28"

Body

application/json
locationId
string
fromDate
string<date-time>
toDate
string<date-time>
categoryIds
string[]
accountIds
string[]

Response

Successful response

Last modified on March 4, 2026