v1

latestOpenAPI 3.0.02026-07-24234471.0 KB
Feedback

Get a feedback

Retrieves a feedback by Id

get/feedback/{id}

Path parameters

idinteger required

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

Example:4455

Feedback ID

Response

Ok

idinteger required

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

assigneeIdinteger

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

projectIdinteger required

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

feedbackType'General' | 'Bug' | 'Idea' required

The type of feedback that was given.

emailstring email required

The email of the user who submitted the Feedback

titlestring required

The title provided by the user submitting the Feedback

descriptionstring required

The description provided by the user submitting the Feedback

namestring required

The name of the user who submitted the Feedback

createdstring date-time required

The date and time when the Feedback was created in RFC 3339 format

modifiedstring date-time required

The date and time when the Feedback was last updated in RFC 3339 format

dueDatestring required

Define the due date of the feedback

shareKeystring

The share key of the feedback

pageUrlstring uri

The url of the page where the feedback was submitted

isPortalApprovedboolean required
isPinnedboolean required

If true, the feedback has been pinned to the top of the feedback list in Userback

videoUrlstring uri

The URL of the video recording of the user submitting the feedback, if it exists

attachmentUrlstring uri

The URL of the attachment from the user submitting the feedback, if it exists

isSharedboolean required
voteCountnumber double required

The total amount of votes the feedback has received

This only applies to feedback that is a feature request

allowPublicCommentboolean required

If true, public comments are allowed to be posted on the feedback

priority'low' | 'neutral' | 'high' | 'urgent' required
categorystring

If defined, the category the feedback was assigned to

ratingstring required

Defines the rating given by the user submitting the feedback

userIdentificationstring required

The user identification

shareUrlstring uri required

The url of the feedback in Userback

Example response

{
  "id": 4455,
  "assigneeId": 4455,
  "projectId": 4455,
  "title": "This button doesn't work",
  "dueDate": "2024-02-30",
  "pageUrl": "https://example.com",
  "voteCount": 1234,
  "category": "Bug",
  "Workflow": {
    "id": 4455,
    "name": "In Progress",
    "sort": 1
  },
  "Assignee": {
    "id": 4455,
    "userId": 4455
  },
  "Screenshots": [
    {
      "id": 4455,
      "width": 1920,
      "height": 1080
    }
  ],
  "Session": {
    "colorDepth": 24,
    "dpi": 96,
    "resolutionY": 96,
    "resolutionX": 96,
    "windowHeight": 1080,
    "windowWidth": 1920,
    "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.1234.0 Safari/537.36",
    "uaData": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.1234.0 Safari/537.36"
  },
  "Location": {
    "postal": "90210",
    "subdivision": "California",
    "subdivisionCode": "CA",
    "city": "New York",
    "country": "United States",
    "countryCode": "US",
    "longitude": "-0.1278",
    "latitude": "51.5074"
  }
}