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).
/v1/threads/posts/{postId}/pending-replies/{replyId}Path Parameters
Set to true to approve the pending reply, or false to ignore it.
The platform-specific post ID of the account whose credentials should be used. Optional when the post was published to only one account.
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"
}