Documentation

Guide to Customizing Video Recording Features via URL Parameters

This guide explains how to customize your video recording page using URL parameters. These features allow you to tailor the recording experience to user needs.

1. Hide UI Elements

ParameterDescription
?screen=hiddenHides the video preview screen
?qr=hiddenHides the QR code component
?camera=hiddenHides the camera switch button
?settings=hiddenHides the settings button
?timer=hiddenHides the video recording timer

To hide multiple elements at once:
?hidden=screen,qr,camera,settings,timer

2. Restrict Recording Types

ParameterDescription
?fileUpload=falseDisables file upload
?screenRecord=falseDisables screen recording
?voiceRecord=falseDisables voice recording

3. Automate Actions

ParameterDescription
?autoConfirm=trueAutomatically confirms and proceeds when the recording ends

4. Auto-Fill Form Fields

ParameterDescription
?form_firstName=JohnPre-fills the first name field
?form_lastName=DoePre-fills the last name field
?form_email=john@example.comPre-fills the email field
?form_phone=5551234567Pre-fills the phone number
?form_company=Acme%20IncPre-fills the company field

You can also fill fields without the form_ prefix:
Example: ?firstName=John

5. Usage Examples

Example 1 – Simplified Interface:
?hidden=timer,camera,settings

Example 2 – Video Recording Only:
?fileUpload=false&screenRecord=false&voiceRecord=false

Example 3 – Pre-Filled Form Fields:
?form_firstName=John&form_company=Acme%20Inc

Example 4 – Quick Recording with Auto Confirmation:
?autoConfirm=true&hidden=timer

Example 5 – Fully Customized Experience:
?hidden=screen,qr,camera,settings,timer&fileUpload=false&screenRecord=false&voiceRecord=false&autoConfirm=true&form_firstName=John&form_company=Acme%20Inc

Technical Notes

  • Parameters are case-sensitive: screen=hidden works, while Screen=hidden may not.
  • Use URL encoding for values with spaces or special characters (Acme IncAcme%20Inc)
  • Combine parameters using &.
  • Use comma-separated values in hidden= to group multiple elements.
Scroll to Top