Skip to main content
This webhook is triggered whenever a new text review is received in your Feedspace account.

Webhook Type

feed.text.received

Payload Format

Object Structure

User Object

The user object contains information about the Feedspace user who owns the workspace.

User Fields

  • id: Unique identifier for the Feedspace user account
  • name: Display name of the Feedspace user
  • email: Email address associated with the Feedspace account
  • notification: Object containing notification preferences
    • received_text_feed: Whether user receives notifications for text reviews
    • received_audio_feed: Whether user receives notifications for audio reviews
    • received_video_feed: Whether user receives notifications for video reviews
  • custom_domain: Object containing custom domain settings
    • domain: Custom domain URL if configured
    • status: Boolean indicating if custom domain is active
    • favicon: URL to custom domain’s favicon

Project Object

The project object contains information about the workspace/project where the review was submitted.

Project Fields

  • logo: URL to the project’s logo image
  • name: Name of the project/workspace
  • description: Description or identifier for the project

Feed Form Object

The feed_form object contains information about the review form used to collect the feedback.

Feed Form Fields

  • id: Unique identifier for the review form
  • url: Public URL where the form can be accessed
  • logo: URL to the form’s logo image
  • name: Name or title of the review form

Response Object

The response object contains the actual review data submitted by the user.

Fields

  • Name: Name of the person who submitted the review
  • Email: Email address of the reviewer
  • type: Type of review (e.g., “thumbs_up”, “star”, “comment_only”)
  • value: Value corresponding to the review type
    • For type “thumbs_up”: true = upvote, false = downvote
    • For type “star”: 1-5 rating scale
    • For type “comment_only”: value will be null
  • comment: The actual text content of the review
  • consent: Whether the reviewer gave consent to share their information
  • position: Position or role of the reviewer
  • organization_name: Name of the organization of the reviewer
  • contact_number: Phone number of the reviewer
  • photo: URL to the reviewer’s photo
  • other_text: Answer of the custom field added by the Feedspace user in the feed form settings
Note: All fields in this object are customizable. They can be enabled or disabled in the feed form settings. If a field is not enabled in the form settings, it will not be included in the webhook response.

Top-Level Fields

Top-Level Field Descriptions

  • feed_id: Unique identifier for this specific review
  • feed_url: Public URL where the review is accessible
  • favourite: Whether this review is marked as favorite
  • created_at: Timestamp when the review was created
  • updated_at: Timestamp when the review was last updated
  • live_mode: Whether this is a live mode (true) or test mode (false)