Getting form data
Data sent through the form is stored in OneEntry CMS. They can be retrieved using the functionality described in this section.
Kotlin Multiplatform
Retrieving all submitted data
This method allows you to get all data from all forms available in the CMS. This is a huge set, optimized with pagination.
val result = FormsService.allData(
offset = 0,
limit = 30,
langCode = "en_US"
)
val formData = result.items
Retrieving all submitted data in a form
Knowing the form marker, you can request the data submitted to it. Since the form can store an arbitrary amount of data, the functionality is optimized with pagination.
val result = FormsService.dataByForm(
marker = "delivery",
offset = 0,
limit = 30,
langCode = "en_US"
)
val formData = result.items
Swift
Retrieving all submitted data
This method allows you to get all data from all forms available in the CMS. This is a huge set, optimized with pagination.
let result = try await FormsService.shared.allData(
offset: 0,
limit: 30,
langCode: "en_US"
)
let formData = result.items()
Retrieving all submitted data in a form
Knowing the form marker, you can request the data submitted to it. Since the form can store an arbitrary amount of data, the functionality is optimized with pagination.
let result = try await FormsService.dataByForm(
marker: "delivery",
offset: 0,
limit: 30,
langCode: "en_US"
)
let formData = result.items()
Last modified: 01 August 2025