PUT
/
review-forms
/
{feed_form_id}
curl --request PUT \
  --url https://api.feedspace.io/v3/review-forms/{feed_form_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'fs-workspace-id: <fs-workspace-id>' \
  --data '{
  "name": "<string>",
  "page_title": "<string>",
  "page_main_message": "<string>",
  "allow_video_recording": 0,
  "video_button_label": "<string>",
  "allow_screen_recording": 0,
  "screen_button_label": "<string>",
  "allow_audio_recording": 0,
  "audio_button_label": "<string>",
  "allow_text_review": 0,
  "text_button_label": "<string>",
  "allow_upload_file_option": 0,
  "text_file_upload_label": "<string>",
  "allow_files": [
    "<string>"
  ]
}'
{
  "message": "Form Updated Successfully"
}

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 unique ID

Path Parameters

feed_form_id
string
required

Body

application/json

Response

200 - application/json

Review form updated successfully.

The response is of type object.

PUT
/
review-forms
/
{feed_form_id}
curl --request PUT \
  --url https://api.feedspace.io/v3/review-forms/{feed_form_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'fs-workspace-id: <fs-workspace-id>' \
  --data '{
  "name": "<string>",
  "page_title": "<string>",
  "page_main_message": "<string>",
  "allow_video_recording": 0,
  "video_button_label": "<string>",
  "allow_screen_recording": 0,
  "screen_button_label": "<string>",
  "allow_audio_recording": 0,
  "audio_button_label": "<string>",
  "allow_text_review": 0,
  "text_button_label": "<string>",
  "allow_upload_file_option": 0,
  "text_file_upload_label": "<string>",
  "allow_files": [
    "<string>"
  ]
}'
{
  "message": "Form Updated Successfully"
}

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 unique ID

Path Parameters

feed_form_id
string
required

Body

application/json

Response

200 - application/json

Review form updated successfully.

The response is of type object.