Imports
Create from dump
Registers an already uploaded export file (GrooveHQ JSON, or Excel in the QA or questionnaire format) as an import. The file is virus scanned and fully parsed before it is accepted, then encrypted and stored under the import while the uploaded temporary file is removed; friendly_name has to be unique among data dump imports and group_id is required for every provider except EXCEL_QUESTIONNAIRE.
The response only confirms that the file was accepted, the records themselves (tickets for GrooveHQ, AI processed question and answer material for the Excel formats) are created afterwards by the background job this call starts.
POST
/api/{tenant:minlength(2)}/v{version:apiVersion}/imports/create_from_dump
- Authorisation
- Minimum role: USER
Request arguments
Request body example
Response
- Status
- 200 (OK)
- Type
- DTO_import
- Wrapper
- DTO_response_wrap
- Other statuses
- 400 (BadRequest), 403 (Forbidden)
Response body example
| Name | Type | ReadOnly | Description |
| provider | ENUM import_data_dump_provider | | Provider |
| group_id | Int32 | | Group id |
| friendly_name | String | | Friendly name |
| file_key | String | | File key |
DTO_reference_user
| Name | Type | ReadOnly | Description |
| profile_pic | String | ReadOnly | Profile pic |
| email | String | ReadOnly | Email |
| id | Int32 | | Id |
| label | Object | ReadOnly | Label |
DTO_reference
| Name | Type | ReadOnly | Description |
| id | Int32 | | The id of the reference |
| label | Object | ReadOnly | Name/Label from referenced object. |
DTO_external_auth_imap
| Name | Type | ReadOnly | Description |
| hostname | String | | Hostname |
| port | Int32 | | Port |
| username | String | | Username |
| password | String | | Password |
DTO_external_auth_oauth2
| Name | Type | ReadOnly | Description |
| identifier | String | | Identifier |
| authorized_account | String | ReadOnly | Authorized account |
ENUM import_email_status
| Value | Name | Description |
| 0 | UNKNOWN | UNKNOWN |
| 1 | IN_PROGRESS | In progress |
| 2 | DONE | Done |
| 3 | ERROR | Error |
ENUM import_data_dump_provider
| Value | Name | Description |
| 0 | UNKNOWN | UNKNOWN |
| 1 | GROOVEHQ | GrooveHQ |
| 2 | EXCEL_QA | Excel Q&A |
| 3 | EXCEL_QUESTIONNAIRE | Excel Questionnaire |
| 4 | SUPPORT_BOX_EML | SupportBox EML |
ENUM import_type
| Value | Name | Description |
| 0 | UNKNOWN | UNKNOWN |
| 1 | EMAIL | Email |
| 2 | DATA_DUMP | Data dump |
Generated Aug 4, 2026 18:37