It allows you to access the creation form directly without going through the list.
➡️ Add this line in the editor
{
"createOnly": true
}"createOnly": true→ the view opens directly on New record."createOnly": false→ standard navigation through the list.
ℹ️ This parameter is of type boolean: the only valid values are true (enabled) or false (disabled).
Important — usage context
createOnlyworks only in a mirror view.
In this mode, the user does not see existing records: they can only create a new record in the configured view.
User-side result
You save one click when the main action is data entry (e.g. expense reports, intervention reports, partner forms).
Commonly associated parameters
1) Prevent access to linked records (mobile)
{
"disableLinkAccess": [1234, 5678]
}Prevents access to linked records via the listed columns (IDs).
Useful to hide data or avoid accidental taps on mobile.
On the web, links remain clickable (the mouse is more precise than a finger).
2) Offer a shortcut on the home screen (mobile)
{
"shortcut": true
}When opening the space on mobile, the app suggests adding a shortcut to this view.
Illustrations — adding a shortcut (mobile)
Displayed when "shortcut": true is enabled.
The icon opens the view directly.
ℹ️ General reminders
- Values must respect the indicated types (bool, number, array, object).
- Do not put quotation marks around
true/false. - A valid JSON object always starts with
{and ends with}. - Each view can have its own configuration (settings are not global).