API Documentation

posts/highlight

Highlights the requested post(s).

URL

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

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