Lodol Docs

Buffer

API actions for the Buffer integration.

Buffer

Create, schedule, publish, and manage queued posts across Buffer profiles.


Create queued update

Add a post to the publishing queue for a profile with an optional schedule.

Parameters

ParameterTypeRequiredDescription
profile_idstringYesProfile identifier to publish to
textstringYesContent of the post
scheduled_atstringNoISO8601 timestamp to schedule the post

Response

{
  "status": "success",
  "update": {
    "id": "5f8d9e1a2b3c4d5e",
    "status": "pending"
  }
}

Delete queued update

Remove a scheduled update from the Buffer queue.

Parameters

ParameterTypeRequiredDescription
update_idstringYesIdentifier of the update to delete

Response

{
  "status": "success"
}

Get scheduled queue

Fetch queued updates for a profile.

Parameters

ParameterTypeRequiredDescription
profile_idstringYesProfile identifier to inspect
countnumberNoMaximum number of updates to fetch

Response

{
  "status": "success",
  "updates": []
}

List connected profiles

Retrieve the authenticated user's Buffer profiles.

Response

{
  "profiles": [
    {
      "id": "5a1b2c3d4e5f6g7h",
      "service": "twitter",
      "username": "acme_corp"
    }
  ],
  "status": "success"
}

Share now

Immediately share a post to a Buffer profile.

Parameters

ParameterTypeRequiredDescription
profile_idstringYesProfile identifier to publish to
textstringYesContent of the post

Response

{
  "status": "success",
  "update": {
    "id": "5f8d9e1a2b3c4d5e",
    "status": "sent"
  }
}

On this page