Userback website screenshot

Userback

Userback is a customer feedback platform that captures visual feedback, screenshots, screen recordings, and bug reports directly from in-product widgets installed on websites and web applications. The platform offers feedback boards, session replays, and integrations with project management and developer tools to streamline customer-driven product development. Userback's REST API uses Bearer token authentication for managing feedback, projects, users, and account data.

1 APIs 0 Features
Customer FeedbackBug ReportingVisual FeedbackSession ReplayProduct ManagementSaaS

APIs

Userback REST API

REST API for managing Userback feedback items, projects, users, tags, and account resources. Uses Bearer token authentication; partner integrations use an X-Partner-Code header.

Collections

Resources

🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
💰
Pricing
Pricing
📝
Signup
Signup
🔗
LlmsText
LlmsText
📰
Blog
Blog

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Userback REST API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Feedback
    type: folder
  items:
  - info:
      name: List feedback
      type: http
    http:
      method: GET
      url: https://rest.userback.io/1.0/feedback
      params:
      - name: page
        value: ''
        type: query
        description: Page number for pagination.
      - name: limit
        value: ''
        type: query
        description: Maximum number of items per page.
      - name: sort
        value: ''
        type: query
        description: Sort expression.
      - name: filter
        value: ''
        type: query
        description: Filter expression.
    docs: Lists available feedback items.
  - info:
      name: Create feedback
      type: http
    http:
      method: POST
      url: https://rest.userback.io/1.0/feedback
      body:
        type: json
        data: '{}'
    docs: Creates a feedback item.
- info:
    name: Feedback Comments
    type: folder
  items:
  - info:
      name: List feedback comments
      type: http
    http:
      method: GET
      url: https://rest.userback.io/1.0/feedback/comment
      params:
      - name: page
        value: ''
        type: query
        description: Page number for pagination.
      - name: limit
        value: ''
        type: query
        description: Maximum number of items per page.
      - name: sort
        value: ''
        type: query
        description: Sort expression.
      - name: filter
        value: ''
        type: query
        description: Filter expression.
    docs: Lists feedback comments with pagination and filtering.
  - info:
      name: Create feedback comment
      type: http
    http:
      method: POST
      url: https://rest.userback.io/1.0/feedback/comment
      body:
        type: json
        data: '{}'
    docs: Creates a new comment on a feedback item.
  - info:
      name: Retrieve feedback comment
      type: http
    http:
      method: GET
      url: https://rest.userback.io/1.0/feedback/comment/:id
      params:
      - name: id
        value: ''
        type: path
        description: Feedback comment identifier.
    docs: Retrieves a specific feedback comment by id.
  - info:
      name: Update feedback comment
      type: http
    http:
      method: PATCH
      url: https://rest.userback.io/1.0/feedback/comment/:id
      params:
      - name: id
        value: ''
        type: path
        description: Feedback comment identifier.
      body:
        type: json
        data: '{}'
    docs: Updates an existing feedback comment.
  - info:
      name: Delete feedback comment
      type: http
    http:
      method: DELETE
      url: https://rest.userback.io/1.0/feedback/comment/:id
      params:
      - name: id
        value: ''
        type: path
        description: Feedback comment identifier.
    docs: Deletes a feedback comment.
- info:
    name: Projects
    type: folder
  items:
  - info:
      name: Retrieve project
      type: http
    http:
      method: GET
      url: https://rest.userback.io/1.0/projects/:id
      params:
      - name: id
        value: ''
        type: path
        description: Project identifier.
    docs: Retrieves a project by id.
bundled: true