POST
/
review-forms
curl --request POST \
  --url https://api.feedspace.io/v3/review-forms \
  --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": "Feed Form Created Successfully",
  "data": {
    "id": 10391,
    "unique_form_id": "form_MbgOEoTSlvsjYg8wN7NTZ1fg",
    "slug": "cGdkixR",
    "public_url": "https://www.feedspace.io/u/cGdkixR"
  }
}

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

Body

application/json

Response

201 - application/json

Review form created successfully.

The response is of type object.

POST
/
review-forms
curl --request POST \
  --url https://api.feedspace.io/v3/review-forms \
  --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": "Feed Form Created Successfully",
  "data": {
    "id": 10391,
    "unique_form_id": "form_MbgOEoTSlvsjYg8wN7NTZ1fg",
    "slug": "cGdkixR",
    "public_url": "https://www.feedspace.io/u/cGdkixR"
  }
}

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

Body

application/json

Response

201 - application/json

Review form created successfully.

The response is of type object.