Skip to main content
POST
cURL
Edit a specific text review. This endpoint accepts multipart/form-data and allows updating various fields of a text review.

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using API Key and Secret Key. The credentials should be Base64 encoded in the format 'api_key:secret_key'. You can obtain your API Key and Secret Key from Feedspace → Automation → API (https://app.feedspace.io/automation/api).

Path Parameters

id
integer
required

The review's numeric ID, as returned in the id field of GET /feeds. This is not the unique_feedback_id field — that value is not accepted here.

Example:

9793

Body

multipart/form-data

Request body for updating a text review. Only _method is required; all other fields are optional.

_method
enum<string>
required

Must be PUT

Available options:
PUT
favourite
enum<integer>

Set to 1 to add to favourites, 0 to remove.

Available options:
0,
1
comment
string

Review comment

response
enum<integer>

Rating value (0-5)

Available options:
0,
1,
2,
3,
4,
5
review_title
string

Review title (max 255 characters)

reviewed_at
string<date>

Date when the review was submitted (YYYY-MM-DD)

sentiment_id
enum<integer>

Sentiment of the review: 1 = positive, 2 = neutral, 3 = negative. Any other value is rejected.

Available options:
1,
2,
3
media[]
file

Attachment files to add to the review. Repeat the key to send multiple files.

remove_media[]
string

Attachment IDs to remove from the review. Send an empty array to remove every attachment.

transcript
string

Transcript text

question_answers[0][feed_form_question_id]
string

Review form question ID. Either the numeric id of a stored question (from questions[].id on GET /forms/{unique_form_id}, or question_answers[].feed_form_question_id on this review), or one of the built-in keys: organization_name, position, photo, name, email, contact_number, company_logo, company_url.

question_answers[0][answer]
string

Answer text for the question

question_answers[0][answer_file]
file

Image file upload as answer (if applicable)

question_answers[1][feed_form_question_id]
string

Review form question ID

question_answers[1][answer]
string

Answer text for the question

question_answers[1][answer_file]
file

Image file upload as answer (if applicable)

reviewer_social_urls[twitter]
string

Twitter profile URL

reviewer_social_urls[linkedin]
string

LinkedIn profile URL

reviewer_social_urls[facebook]
string

Facebook profile URL

reviewer_social_urls[instagram]
string

Instagram profile URL

static_thumb[0][attachment_id]
string

Attachment ID for the thumbnail update

static_thumb[0][static_thumb]
file

Thumbnail image file

static_thumb[0][extension]
enum<string>

Image file extension

Available options:
jpeg,
jpg,
png,
gif,
webp
static_thumb[1][attachment_id]
string

Attachment ID for the thumbnail update

static_thumb[1][static_thumb]
file

Thumbnail image file

static_thumb[1][extension]
enum<string>

Image file extension

Available options:
jpeg,
jpg,
png,
gif,
webp

Response

200 - application/json

Text review updated successfully.

message
string
data
object