Skip to main content
PUT
/
social-media-posting
/
category
/
queues
/
{queueId}
Update Queue
curl --request PUT \
  --url https://services.leadconnectorhq.com/social-media-posting/category/queues/{queueId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '
{
  "status": "active",
  "timeSlots": [
    {}
  ],
  "skipDates": [
    "2023-12-25"
  ]
}
'

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"

Path Parameters

queueId
string
required

Body

application/json
status
enum<string>
Available options:
active,
paused,
deleted
timeSlots
object[]
skipDates
string<date>[]

Response

Successful response

Last modified on March 4, 2026