API Documentation

posts/approve

Approves the requested post(s).

URL

https://disqus.com/api/3.0/posts/approve.json

Accessibility

public key, secret key

Supported request methods

POST

Supported formats

json, jsonp

Requires authentication

yes

Rate limited

inherits global rate limit

Arguments

Required

  • post allows multiple

    Looks up a post by ID
    You must be a moderator on the selected post's forum.

Optional

  • newUserPremodBypass

    Defaults to null

    Bypass the new user premoderation for the author(s) of the post(s).

Example Responses

Expand json

POST post=1

{
  "code":0,
  "response":[
    {
      "id":"1"
    }
  ]
}
Expand json

POST post=1&post=2

{
  "code":0,
  "response":[
    {
      "id":"2"
    },
    {
      "id":"1"
    }
  ]
}