Order Storage
To start receiving orders from users in your application, you need to create and configure an order storage.
Order storage includes:
A form for receiving orders
A payment system
A list of received orders and tools to work with them
You can create an unlimited number of order storages. This will help group orders, for example, by type, delivery method, or payment method.
Kotlin Multiplatform
Retrieving all order storages
val storages = OrdersService.storages(
offset = 0,
limit = 30,
langCode = "en_US"
)
Retrieving an order storage by its marker
By knowing the marker of an order storage, you can retrieve full information about it.
val storage = OrdersService.storage(
id = "dev",
langCode = "en_US"
)
Swift
Retrieving all order storages
let storages = try await OrdersService.shared.storages(
offset: 0,
limit: 30,
langCode: "en_US"
)
Retrieving an order storage by its marker
By knowing the marker of an order storage, you can retrieve full information about it.
let storage = try await OrdersService.shared.storage(
id: "dev",
langCode: "en_US"
)
Last modified: 01 August 2025