The title of the Pin
INPUT
PinterestPostMetadataInput
Pinterest post metadata
Fields 3
title
:
String
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
}
}
}
}
}