1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Ozon/Fbo-scheme/Get-shipment-additional-fields.mdx
Vitaly the Alpaca (bot) 433a814da0 Main build (Jenkins)
2025-09-16 15:56:31 +03:00

59 lines
1.5 KiB
Plaintext
Vendored

---
sidebar_position: 7
description: Get shipment additional fields and other functions to work with Ozon in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Ozon]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get shipment additional fields
Returns the structure of inclusion of additional response fields for the GetFBOShipmentsList method
`Function GetShipmentAdditionalFields(Val Clear = False) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Clear | --empty | Boolean | ✖ | True > structure with empty valuse, False > field descriptions at values |
Returns: Structure Of KeyAndValue - Fields structure
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Clear = False;
Result = OPI_Ozon.GetShipmentAdditionalFields(Clear);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint ozon GetShipmentAdditionalFields \
--empty false
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint ozon GetShipmentAdditionalFields ^
--empty false
```
</TabItem>
</Tabs>
```json title="Result"
{
"analytics_data": "<pass True to add analytics data to the response>",
"financial_data": "<pass True to add financial data to the response>"
}
```