Hide or unhide a reply

Hide or unhide a reply on a Threads post managed by Outstand.

Hide or unhide a reply on a Threads post managed by Outstand. Provide Outstand's post ID in the path and the reply's Threads-specific ID as replyId, and set hidden in the body. Use platform_post_id or account_username to select which connected account's credentials to use (optional when the post was published to only one account).

Note: Threads does not support editing a reply's text via the API.

PATCH/v1/threads/posts/{postId}/replies/{replyId}

Path Parameters

postIdstring
replyIdstring
hiddenboolean

Set to true to hide the reply, or false to unhide it.

platform_post_id?string

The platform-specific post ID of the account whose credentials should be used. Optional when the post was published to only one account.

account_username?string

The username or nickname of the connected account whose credentials should be used. Optional when the post was published to only one account.

Response Body

const body = JSON.stringify({  "hidden": true})fetch("https://api.outstand.so/v1/threads/posts/string/replies/string", {  method: "PATCH",  headers: {    "Content-Type": "application/json"  },  body})
{
  "success": true
}
{
  "success": false,
  "error": "Post not found"
}
{
  "success": false,
  "error": "Post not found"
}
{
  "success": false,
  "error": "Internal server error"
}