GET
/pins.listList pinned items in a channel
Lists the items pinned to a channel. Supply the channel identifier together with an authentication token that has permission to read pins. The response can contain either the pinned item collection or a count, depending on the returned result shape.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
tokenstringrequired
Authentication token with the `pins:read` scope.
channelstringrequired
Channel whose pinned items to retrieve.
200Returns `ok` set to true with either an `items` array containing pinned items or a `count` of pinned items.
defaultReturned when the channel cannot be found or authentication, permission, or request arguments are invalid; the response includes `ok` set to false and an `error` reason.
callstackstringoptional
Note: PHP callstack is only visible in dev/qa
errorstringrequired
okbooleanrequired
Error handling
The token must include the pins:read scope, and channel must identify the channel whose pinned items you want to retrieve. Do not omit either token or channel.