Skip to content

Latest commit

 

History

History
70 lines (48 loc) · 1.75 KB

workspaceComment_reply.rst

File metadata and controls

70 lines (48 loc) · 1.75 KB

workspaceComment_reply

POST /orgs/{oid}/workspaces/{wid}/comments/{cid}/replies

Summary

  • Method: POST
  • Response Code: 201
  • Response Formats: application/xml application/json
  • Since: UForge 3.3.2

Create a reply to a comment in a workspace.

Please refer to comment-object for a complete list of all the comment attributes.

Security Summary

  • Requires Authentication: true
  • Entitlements Required: appliance_create

URI Parameters

  • wid (required): the id of the workspace-object
  • oid (required): the id of the org-object
  • cid (required): the id of the comment-object to reply to

HTTP Request Body Parameters

A comment-object object

Example Request

curl "https://uforge.example.com/api/orgs/{oid}/workspaces/{wid}/comments/{cid}/replies" -X POST \
-u USER_LOGIN:PASSWORD -H "Accept: application/xml" --data-binary "@representation.xml"

Example of representation.xml content (the request body):

<ns0:comment xmlns:ns0="http://www.usharesoft.com/uforge">
    <message>Example Reply</message>
    <type>REPLY</type>
</ns0:comment>
  • comment-object
  • workspace-api-resources
  • workspaceComment-create
  • workspaceComment-delete
  • workspaceComment-deleteAll
  • workspaceComment-dislike
  • workspaceComment-get
  • workspaceComment-like
  • workspaceComment-reply
  • workspaceComment-reportAbuse
  • workspaceComment-update
  • workspaceComments-getAll