List pending replies

List replies that are pending approval on a Threads post managed by Outstand (Threads' reply-approvals feature).

List replies that are pending approval on a Threads post managed by Outstand (Threads' reply-approvals feature). 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). Cursor-paginated via limit and after.

GET/v1/threads/posts/{postId}/pending-replies

Path Parameters

postIdstring

Query Parameters

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.

limit?integer

Maximum number of pending replies to return (1-100). Defaults to 25.

Range1 <= value <= 100
after?string

Pagination cursor returned in a previous response's paging.cursors.after.

Response Body

fetch("https://api.outstand.so/v1/threads/posts/string/pending-replies?platform_post_id=123456789&account_username=mycompany&limit=25&after=string", {  method: "GET"})
{
  "success": true,
  "data": [
    {
      "id": "17900000000000000",
      "text": "Great post!",
      "username": "someuser",
      "timestamp": "string",
      "permalink": "string",
      "reply_audience": "string",
      "reply_approval_status": "string"
    }
  ],
  "paging": null
}
{
  "success": false,
  "error": "Post not found"
}
{
  "success": false,
  "error": "Post not found"
}
{
  "success": false,
  "error": "Internal server error"
}