comments
Unhide comment
Unhide a previously hidden comment. Supported by Facebook, Instagram, Threads, and X/Twitter.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
postIdstring
commentIdstring
Query Parameters
accountIdstring
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.comments.unhideInboxComment({ path: { postId: 'post_abc123', commentId: 'comment_abc123', }, query: { accountId: 'account_abc123', },});console.log(data);{
"status": "string",
"commentId": "string",
"hidden": true,
"platform": "string"
}Empty
{
"error": "Unauthorized"
}Empty
Send private reply POST
Send a private message to the author of a comment. Supported on Instagram and Facebook only. One reply per comment, must be sent within 7 days, text only.
Unlike comment DELETE
Remove a like from a comment. Supported platforms: Facebook, Twitter/X, Bluesky, Reddit. For Bluesky, the likeUri query parameter is required.