Skip to content

Wildberries API TypeScript SDK / <internal> / OrderStatusItem

Interface: OrderStatusItem

Defined in: types/orders-fbs.types.ts:244

Individual order status entry

Properties

PropertyTypeDescriptionDefined in
<a id="id"></a> id?numberOrder IDtypes/orders-fbs.types.ts:246
<a id="supplierstatus"></a> supplierStatus?OrderSupplierStatusSupplier-side statustypes/orders-fbs.types.ts:248
<a id="wbstatus"></a> wbStatus?OrderWbStatusWildberries system statustypes/orders-fbs.types.ts:250
<a id="iscancellable"></a> isCancellable?booleanWhether this assembly task can still be cancelled by the seller before being transferred to Wildberries. When true, you can call sdk.ordersFBS.cancelOrder(orderId) and it will succeed. Use this field as a pre-check to avoid unnecessary API calls and 4xx errors when the task is already past the cancellation window. Since 3.11.0 See https://dev.wildberries.ru/docs/openapi/orders-fbs/#tag/Sborochnye-zadaniya-FBS/paths/~1api~1v3~1orders~1status/post Example for (const status of statuses) { if (status.isCancellable) { await sdk.ordersFBS.cancelOrder(status.id!); } }types/orders-fbs.types.ts:270

Made with ❤️ for the Wildberries developer community