Lodol Docs

Pinterest

API actions for the Pinterest integration.

Pinterest

Create pins on boards in your Pinterest account.


Create a pin

Publish a new pin to a Pinterest board using the connected account.

Parameters

ParameterTypeRequiredDescription
board_idstringYesThe ID of the board to add the pin to.
media_urlstringYesWeb address of the image to use for the pin. Pinterest requires the image to be publicly accessible.
titlestringNoOptional title for the new pin (max 100 characters).
descriptionstringNoOptional description or note for the pin (max 800 characters).
linkstringNoDestination link for the pin.

Response

{}

List boards

List the boards in your Pinterest account, including each board's ID. Use this to find the board ID needed to create a pin.

Parameters

ParameterTypeRequiredDescription
limitnumberNoMaximum number of boards to return (1-100).

Response

[
  {
    "id": "549755885175",
    "name": "Summer Recipes",
    "privacy": "PUBLIC"
  }
]

On this page