PUT
/
feeds
/
video
/
{video_feed_id}
curl --request PUT \
  --url https://api.feedspace.io/v3/feeds/video/{video_feed_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --header 'fs-workspace-id: <fs-workspace-id>' \
  --data favourite=0
{
  "message": "Review updated successfully",
  "data": {
    "id": 123,
    "unique_feedback_id": "abc123",
    "public_url": "https://www.feedspace.io/vf/abc123",
    "comment": null,
    "type": "Uploaded",
    "favourite": false,
    "transcript": "This is a sample transcript for the video review.",
    "is_video_converted": 1,
    "created_at": "2025-04-07T08:50:44.000000Z",
    "feed_fields": {
      "name": "John Doe",
      "profile_pic_url": null,
      "position": "Designer",
      "organization_name": "Techuplabs",
      "consent": null
    },
    "feed_form": {
      "name": "Video Review Form",
      "unique_form_id": "form_abc123",
      "public_url": "https://www.feedspace.io/u/abc123"
    },
    "question_answers": [
      {
        "feed_form_question_id": 40081,
        "question_type": 1,
        "question_text": "name",
        "default_value": "",
        "question_label": "",
        "mandatory": 0,
        "answer": "John Doe",
        "placeholder": "Name"
      },
      {
        "feed_form_question_id": 40082,
        "question_type": 1,
        "question_text": "email",
        "default_value": "",
        "question_label": "",
        "mandatory": 0,
        "answer": null,
        "placeholder": "Email"
      }
    ],
    "is_download_enabled": true,
    "file_url": "https://dm219012nbq21.cloudfront.net/uploads/abc123/video-feed/feed_abc1231744015722679.mp4"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

fs-workspace-id
string
required

Workspace ID

Path Parameters

video_feed_id
string
required

ID of the video feed

Body

application/x-www-form-urlencoded

Response

200 - application/json

Favourite status updated successfully.

The response is of type object.

PUT
/
feeds
/
video
/
{video_feed_id}
curl --request PUT \
  --url https://api.feedspace.io/v3/feeds/video/{video_feed_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --header 'fs-workspace-id: <fs-workspace-id>' \
  --data favourite=0
{
  "message": "Review updated successfully",
  "data": {
    "id": 123,
    "unique_feedback_id": "abc123",
    "public_url": "https://www.feedspace.io/vf/abc123",
    "comment": null,
    "type": "Uploaded",
    "favourite": false,
    "transcript": "This is a sample transcript for the video review.",
    "is_video_converted": 1,
    "created_at": "2025-04-07T08:50:44.000000Z",
    "feed_fields": {
      "name": "John Doe",
      "profile_pic_url": null,
      "position": "Designer",
      "organization_name": "Techuplabs",
      "consent": null
    },
    "feed_form": {
      "name": "Video Review Form",
      "unique_form_id": "form_abc123",
      "public_url": "https://www.feedspace.io/u/abc123"
    },
    "question_answers": [
      {
        "feed_form_question_id": 40081,
        "question_type": 1,
        "question_text": "name",
        "default_value": "",
        "question_label": "",
        "mandatory": 0,
        "answer": "John Doe",
        "placeholder": "Name"
      },
      {
        "feed_form_question_id": 40082,
        "question_type": 1,
        "question_text": "email",
        "default_value": "",
        "question_label": "",
        "mandatory": 0,
        "answer": null,
        "placeholder": "Email"
      }
    ],
    "is_download_enabled": true,
    "file_url": "https://dm219012nbq21.cloudfront.net/uploads/abc123/video-feed/feed_abc1231744015722679.mp4"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

fs-workspace-id
string
required

Workspace ID

Path Parameters

video_feed_id
string
required

ID of the video feed

Body

application/x-www-form-urlencoded

Response

200 - application/json

Favourite status updated successfully.

The response is of type object.