Property description
The excel_import_settings property configures the settings for importing objects from an Excel file.
Minimal JSON
{
"key": "excel_import_settings"
}{
"setting": {
"key": "excel_import_settings",
"value": {
"allowCrossSpaceAppImport": true,
"allowedImportModes": [
"FULL_RELOAD",
"INSERT",
"UPDATE",
"DELETE"
],
"dateFormat": "MM-dd-yy",
"fullReloadDeletionMode": "SOFT",
"minimalRightsLevel": "space_admin",
"multiAppsImportEnabled": false
}
}
}This example JSON is applicable for the settings asset. The settings in the applications asset are configured differently.
Nested properties
| Property | Description | Value | Mandatory |
|---|---|---|---|
key | excel_import_settings | string | Yes |
value | Specifies settings values. | string | No |
*Supported key values
| Name | Is Single Only | Description |
|---|---|---|
allowCrossSpaceAppImport | Yes | Enables objects to be imported across different spaces and applications. |
allowedImportModes | No | Allowed import modes. Supported values are: FULL_RELOAD: Allows the full reload of the objects., INSERT: Allows inserting new objects specified in the import., UPDATE: Allows updating objects specified in the import., DELETE: Allows deleting objects specified in the import. |
dateFormat | No | Date format used in the import Excel file. The list of supported values can be found here. Default value is d.m.yyyy (e.g., 1.1.202x). |
enableExtendedLogging | No | Enables extended logging. The default value is false. |
fullReloadDeletionMode | No | The deletion mode during a full reload process. The default value is SOFT. |
minimalRightsLevel | No | Sets the minimum required role (permission level) needed to import objects. Supported values are: contributor: Any contributor with writepermissions for the space and higher can import objects. Default value., space_admin: Only space admins and higher can import objects., admin: Only administrators can import objects. |
multiAppsImportEnabled | No | Enables object import into multiple applications. The default value is false. |