v1

latestOpenAPI 3.0.02026-07-24234471.0 KB
Feedback Comment

Comment on a feedback

Creates a feedback comment

post/feedback/comment

Request body

feedbackIdinteger required

ID is a generic type that is used to represent a unique identifier

replyCommentIdinteger

ID is a generic type that is used to represent a unique identifier

commentstring required

The contents of the comment.

userIdinteger

ID is a generic type that is used to represent a unique identifier

isPublicboolean

If true, the comment is public and visible to all users.

guestEmailstring email

The email of the ananymous user who created the comment, if defined.

guestNamestring

The name of the ananymous user who created the comment, if defined.

Example request

{
  "feedbackId": 4455,
  "replyCommentId": 4455,
  "userId": 4455
}

Response

Created

idinteger required

ID is a generic type that is used to represent a unique identifier

userIdinteger

ID is a generic type that is used to represent a unique identifier

screenshotNumnumber double required
replyCommentIdinteger

ID is a generic type that is used to represent a unique identifier

isResolvedboolean required

If true, the comment has been internally marked as resolved.

isPublicboolean required

If true, the comment is public and visible to all users.

guestEmailstring email

The email of the ananymous user who created the comment, if defined.

guestNamestring

The name of the ananymous user who created the comment, if defined.

commentstring required

The contents of the comment.

attachmentUrlstring uri

The attachment url of the comment, if defined.

createdstring date-time required

Timestamp of when the comment was created.

modifiedstring date-time required

Timestamp of when the comment was last updated.

Example response

{
  "id": 4455,
  "userId": 4455,
  "replyCommentId": 4455,
  "Member": {
    "id": 4455,
    "userId": 4455
  },
  "Feedback": {
    "id": 4455,
    "assigneeId": 4455,
    "projectId": 4455,
    "title": "This button doesn't work"
  }
}