2025-05-04 21:43:56 +03:00
---
sidebar_position: 8
2025-05-14 14:53:52 +03:00
description: Add data as Related and other functions to work with HTTP-client in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
2025-05-05 09:49:19 +03:00
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, HTTP-client]
2025-05-04 21:43:56 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2025-05-14 14:53:52 +03:00
# Add data as Related
2025-05-04 21:43:56 +03:00
Adds data to the multipart/related body
`Function AddDataAsRelated(Val Data, Val DataType, Val ContentID = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
2025-05-14 14:53:52 +03:00
| Data | - | Arbitrary | ✔ | Data to be written |
| DataType | - | String | ✔ | MIME type of data |
| ContentID | - | String | ✖ | Content ID, if required |
2025-05-04 21:43:56 +03:00
Returns: DataProcessorObject.OPI_HTTPClient - This processor object
<br/>
:::tip
The Multipart record must first be initialized using the `StartMultipartBody` function
:::
2025-05-14 14:53:52 +03:00
:::caution
**NOCLI:** this method is not available in CLI version
:::
2025-05-04 21:43:56 +03:00
<br/>
```bsl title="1C:Enterprise/OneScript code example"
2025-06-29 14:35:33 +03:00
URL = "https://httpbin.org";
2025-05-04 21:43:56 +03:00
URL = URL + "/post";
RandomArray = New Array;
RandomArray.Add("A");
RandomArray.Add("B");
RandomArray.Add("C");
Data = New Structure("Field1,Field2,Field3", 10, "Text", RandomArray);
Result = OPI_HTTPRequests.NewRequest()
.Initialize(URL)
.StartMultipartBody(True, "related")
.AddDataAsRelated(Data, "application/json; charset=UTF-8") // <---
.ProcessRequest("POST")
.ReturnResponseAsJSONObject();
```
2025-05-21 08:49:49 +03:00
```json title="Result"
{
"args": {},
"data": "--cbadf205ae3e4688be037159b0ce9cc1\r\nContent-Type: application/json; charset=UTF-8\r\n\r\n{\r\n \"Field1\": 10,\r\n \"Field2\": \"Text\",\r\n \"Field3\": [\r\n \"A\",\r\n \"B\",\r\n \"C\"\r\n ]\r\n}\r\n\r\n--cbadf205ae3e4688be037159b0ce9cc1--\r\n",
"files": {},
"form": {},
"headers": {
"Accept": "*/*",
"Accept-Charset": "utf-8",
"Accept-Encoding": "gzip",
"Content-Length": "208",
"Content-Type": "multipart/related; boundary=cbadf205ae3e4688be037159b0ce9cc1",
"Host": "httpbin.org",
"User-Agent": "1Script v$1.9.2.10",
"X-Amzn-Trace-Id": "Root=1-682cd6ca-12842436343d0ac515d034eb"
},
"json": null,
"origin": "***",
"url": "https://httpbin.org/post"
}
```