Approve or ignore a pending reply

Approve or ignore a reply pending approval on a Threads post managed by Outstand.

Approve or ignore a reply pending approval on a Threads post managed by Outstand. Provide Outstand's post ID in the path and the pending reply's Threads-specific ID as replyId, and set approve in the body (true to approve, false to ignore). 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).

POST/v1/threads/posts/{postId}/pending-replies/{replyId}

Path Parameters

postIdstring
replyIdstring
approveboolean

Set to true to approve the pending reply, or false to ignore 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({  "approve": true})fetch("https://api.outstand.so/v1/threads/posts/string/pending-replies/string", {  method: "POST",  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"
}