API Documentation

users/listActiveThreads Beta

This method is currently under development and subject to change.

Returns a list of threads a user has participated in sorted by last activity.

URL

https://disqus.com/api/3.0/users/listActiveThreads.json

Accessibility

public key, secret key

Supported request methods

GET

Supported formats

json, jsonp, rss

Requires authentication

no

Rate limited

inherits global rate limit

Arguments

Optional

  • forum allows multiple

    Defaults to null

    Looks up a forum by ID (aka short name)

  • since

    Defaults to null

    Unix timestamp (or ISO datetime standard)

  • related allows multiple

    Defaults to []

    You may specify relations to include with your response.
    Choices: forum, author, category

  • cursor

    Defaults to null

  • limit

    Defaults to 25

    Maximum value of 100

  • user

    Defaults to null

    Looks up a user by ID
    You may look up a user by username using the 'username' query type.

  • include allows multiple

    Defaults to [ "open", "closed" ]

    Choices: open, closed, killed

  • order

    Defaults to "desc"

    Choices: asc, desc

Example Responses

Expand json

GET

List active threads for the authenticated user.

{
  "cursor": {
    "prev": null,
    "hasNext": false,
    "next": "0:0:0",
    "hasPrev": false,
    "total": null,
    "id": "0:0:0",
    "more": false
  },
  "code": 0,
  "response": []
}
Expand json

GET user=1

{
  "cursor": {
    "prev": null,
    "hasNext": false,
    "next": "0:0:0",
    "hasPrev": false,
    "total": null,
    "id": "0:0:0",
    "more": false
  },
  "code": 0,
  "response": []
}