Skip to main content

 Services

Web services from /about to /webhooks

list url discussions public

/discussions/forurl [GET]

Description

Returns the list of public discussions attached to the specified URL.

To create a comment on a public URL, use the /comments/forurl [POST] service.

Parameters

NameDescriptionRequiredTypeDefault
url The URL for the URI with optional #fragmentyesurl
attachedtoThe comments to return that are attached to this URInoenumall
commentsWhich comments to include in each discussionnoenumall 
archivedIf true, include discussions where all comments are archivednobooleanfalse
resultsThe number of results to returnnolong1000
returngroupsThe groups to return in the outputnoenumnone
discussionsizeMax number of comments per discussionnolong100

attachedto

Must be one of:

  • none
  • all

comments

The comment display must be one of:

  • all – all comments in the discussion
  • archive – all comments including archived comments
  • first – only the first comment
  • last – only the last comment
  • none – no comments

returngroups

Must be one of:

  • none – do not include the group
  • user – only include the group that the use belongs to
  • all – (Only administrators can use this option)

url

The URL defines where the discussions are attached.

If the URL does not include a fragment part (i.e. no locator following a ‘#’), then all discussions attached to the URL are returned. Example: http://example.com/abc

If the URL includes a fragment part (i.e. locator following a ‘#’), then only the discussions attached to that locator are returned. Example: http://example.com/abc#part1

If the URL ends with #default, only the discussions attached the URL itself are returned. In other words, discussions attached to specific locators are not returned. Example: http://example.com/abc#default

Permission

This service is public, anyone can invoke it since the URL for the URI has public access.

Response

This service returns a <uri> corresponding to the specified URL.

Each discussion is returned under the <locator> onto which they are attached.

See the following example:

<uri id="23"
     type="..."
     scheme="..."
     host="..."
     port="..."
     path="..."
     decodedpath="..."
     mediatype="...">
  <displaytitle> ... </displaytitle>
  <labels> ... </labels>
  <locator fragment="12">
    <discussion id="123"
                title="My thread"
                replycount="3"
                lastcommentid="234"
                lastcommentdate="2012-08-20T14:27:48+10:00">
      <comment id="234"
               contentrole="File Attachment"
               created="2012-03-08T12:34:00+10:00">
        <title>My thread</title>
        <content type="text/plain">Some text</content>
        <attachment>
          <uri id="189"> ... </uri>
        </attachment>
        <attachment fragment="5">
          <uri id="289"> ... </uri>
        </attachment>
      </comment>
    </discussion>
    <discussion id="100"> ... </discussion>
    <attachedto>
      <comment ...> ... </comment>
    </attachedto>
    ...
  </locator>
  ...
</uri>

Error Handling

CodeCause / Description
0x1304The URL is invalid
0x1314The URL was not specified
0x1315The URL was not found
Created on , last edited on