mentions
List mentions
Returns mentions of your connected organization accounts, delivered via platform webhooks. Currently supports LinkedIn organization mentions.
Requires Inbox addon.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Query Parameters
accountId?string
Filter by social account ID
profileId?string
Filter by profile ID
sortOrder?string
Sort order by publishedAt
Default
"desc"Value in
"asc" | "desc"limit?integer
Default
25Range
1 <= value <= 100cursor?string
Cursor for pagination (ID of the last item from the previous page)
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.mentions.listInboxMentions();console.log(data);{
"data": [
{
"id": "string",
"platform": "linkedin",
"accountId": "string",
"accountUsername": "string",
"content": "string",
"permalink": "string",
"authorUrn": "string",
"organizationalEntity": "string",
"publishedAt": "2019-08-24T14:15:22Z",
"createdAt": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"hasMore": true,
"cursor": "string"
},
"meta": {
"total": 0,
"sortOrder": "asc"
}
}{
"error": "Unauthorized"
}Empty