Form
Form is a OneEntry entity that allows setting the data format and sending it to the server. It can be a registration form or a feedback form.
Kotlin Multiplatform
List of All Forms
Since forms can be used in different contexts, their number is not limited. For optimizing data storage and processing, a pagination mechanism has been added.
val forms = FormsService.forms(
offset = 0,
limit = 30,
langCode = "en_US"
)
Getting a Form by its Marker
Knowing the form's marker allows retrieving information about it, including sets of attributes and data types.
val form = FormsService.form(
marker = "delivery",
langCode = "en_US"
)
Swift
List of All Forms
Since forms can be used in different contexts, their number is not limited. For optimizing data storage and processing, a pagination mechanism has been added.
let forms = try await FormsService.shared.forms(
offset: 0,
limit: 30,
langCode: "en_US"
)
Getting a Form by its Marker
Knowing the form's marker allows retrieving information about it, including sets of attributes and data types.
let form = try await FormsService.shared.form(
marker: "delivery",
langCode: "en_US"
)
Last modified: 01 August 2025