curl --request PUT \
--url https://api.feedspace.io/v3/feeds/video/{video_feed_id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--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"
}
}
Add or remove a video review from favourites.
curl --request PUT \
--url https://api.feedspace.io/v3/feeds/video/{video_feed_id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--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"
}
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
ID of the video feed
Favourite status updated successfully.
The response is of type object
.