1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-10-30 23:47:46 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2024-12-22 14:14:05 +03:00
parent 94212bf6ef
commit 991e275827
33 changed files with 6211 additions and 6015 deletions

View File

@@ -34,9 +34,9 @@ Method at API documentation: [post /v1/draft/create](https://docs.ozon.ru/api/se
```bsl title="1C:Enterprise/OneScript code example"
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
Cluster = 1;
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
Cluster = 1;
Items = New Map;
Items.Insert("1783161863", 5);

View File

@@ -31,8 +31,8 @@ Method at API documentation: [post /v1/cluster/list](https://docs.ozon.ru/api/se
```bsl title="1C:Enterprise/OneScript code example"
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
Result = OPI_Ozon.GetClustersList(ClientID, APIKey);
```

View File

@@ -0,0 +1,44 @@
---
sidebar_position: 4
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get FBO draft
Gets FBO draft by ID
`Function GetFBODraft(Val ClientID, Val APIKey, Val OperationID) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| ClientID | --clientid | String | ✔ | Client identifier |
| APIKey | --apikey | String | ✔ | API key |
| OperationID | --draft | String | ✔ | Draft (operation) ID) |
Returns: Map Of KeyAndValue - serialized JSON response from Ozon Seller API
<br/>
:::tip
Method at API documentation: [post /v1/draft/create/info](https://docs.ozon.ru/api/seller/#operation/SupplyDraftAPI_DraftCreateInfo)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
OperationID = "0193ede5-1756-70ba-97fc-4acbf5a5d308";
Result = OPI_Ozon.GetFBODraft(ClientID, APIKey, OperationID);
```

View File

@@ -32,9 +32,9 @@ Method at API documentation: [post /v1/warehouse/fbo/list](https://docs.ozon.ru/
```bsl title="1C:Enterprise/OneScript code example"
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
Search = "Tver";
ClientID = "2479669";
APIKey = "09f65e9f-262d-4aca...";
Search = "Tver";
Result = OPI_Ozon.GetShippingWarehousesList(ClientID, APIKey, Search);
```