API Status Get API Key
INPUT

PinterestPostMetadataInput

Pinterest post metadata

Fields 3

title : String

The title of the Pin

url : String

The Pin destination link

boardServiceId : String!

The board ID of the Pin, can be obtained when fetching the channel details with the following query:

query GetChannelWithSubprofiles {
  channel(input: { id: "[CHANNEL_ID_HERE]" }) {
    metadata {
      ... on PinterestMetadata {
        boards {
          serviceId
        }
      }
    }
  }
}