With Digibiz24, you can export data and use it in other tools - for example, for analyses or importing into external systems.
The export is provided as a ZIP file and contains JSON files with the data you requested.
What data can you export?
-
members.json- Member data (e.g., UUID, email address, name). -
courses.json- Course data, including the nested structure of chapters/lectures.
You can find a complete overview at the end of the article.
Export Data (step-by-step)
-
Access the export function
- Click on your profile in the header bar.
-
Click Settings.
A new page opens.
-
Click Export data.
A new page opens.
-
Prepare and start the export
- Select the website(s) whose data you want to export.
- Select the data you want to export.
-
Click Export data.
Important: There is no progress bar or status indicator. After you start the export, the page reloads and indicates at the bottom that the export will appear there.
-
Manually reload the page until the download is active
- Manually refresh the page (browser reload) until the entry turns blue and a file size in parentheses is shown - only then is the download clickable.
-
Then click the entry to download the ZIP file.
After the download, the ZIP contains the selected JSONs:
members.jsonand/orcourses.json.
- Manually refresh the page (browser reload) until the entry turns blue and a file size in parentheses is shown - only then is the download clickable.
Export files: data
Members (members.json)
| Field | Type | Description |
uuid |
String | Unique ID of the member. |
digistoreId |
String | null | If present: associated Digistore ID of the member. |
email |
String | Member’s email address. |
firstName |
String | First name. |
lastName |
String | Last name. |
Courses (courses.json)
Top level
| Field | Type | Description |
uuid |
String | Unique ID of the course. |
title |
String | Course title. |
description |
String | Course description. |
route |
String | URL path/slug of the course (e.g., /online-course). |
status |
String | Course status, e.g., INACTIVE. |
accessType |
String | Access type, e.g., PURCHASE. |
accessDate |
String | Access start date. |
accessDelay |
Number | Delayed access. |
accessDuration |
Number | Access duration. |
lectures |
List | Nested structure of lectures (see below). |
lecturesCount |
Number | Total number of lectures. |
dsProducts |
List | List of linked products. |
icon |
Object | Object containing the uuid of the course icon. |
Nested: Structure of chapters and lectures
| Field | Type | Description |
id |
Number | Internal ID of the chapter/lecture. |
title |
String | Title (e.g., “Chapter 1”, “Lecture 1”). |
parentId |
Number | null | ID of the parent chapter; null if chapter. |
position |
Number | Position/order within the course. |
offset |
Number | Access delay in days (post-purchase). |
thumbnailPath |
String | Path to the thumbnail. |
lectures |
List | List of further nested lectures. |