API Documentation

posts/spam

Marks the requested post(s) as spam.

URL

https://disqus.com/api/3.0/posts/spam.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.

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"
    }
  ]
}