1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-21 22:43:09 +02:00
OpenIntegrations/docs/en/md/Ozon/Fbo-scheme/Get-shipment-additional-fields.mdx
Vitaly the Alpaca (bot) ef1228d2d7 Main build (Jenkins)
2025-01-07 12:27:20 +03:00

56 lines
1.2 KiB
Plaintext
Vendored

---
sidebar_position: 7
---
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"
Result = OPI_Ozon.GetShipmentAdditionalFields();
```
<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>"
}
```