1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/HTTP-client/Body-set/Add-multipart-form-data-field.mdx
Vitaly the Alpaca (bot) 709cfe0407 Main build (Jenkins)
2025-09-23 15:45:00 +03:00

82 lines
2.1 KiB
Plaintext
Vendored

---
sidebar_position: 7
description: Add Multipart field 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
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, HTTP-client]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Add Multipart field
Adds a form field to the multipart/form-data body
`Function AddMultipartFormDataField(Val FieldName, Val Value) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| FieldName | - | String | ✔ | Form field name |
| Value | - | Arbitrary | ✔ | Field value |
Returns: DataProcessorObject.OPI_HTTPClient - This processor object
<br/>
:::tip
The Multipart record must first be initialized using the `StartMultipartBody` function
:::
:::caution
**NOCLI:** this method is not available in CLI version
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "http://localhost:2424";
URL = URL + "/post";
Image = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
Result = OPI_HTTPRequests.NewRequest()
.Initialize(URL)
.StartMultipartBody()
.AddMultipartFormDataFile("file1", "pic.png", Image, "image/png")
.AddMultipartFormDataField("Field1", "Text") // <---
.AddMultipartFormDataField("Field2", "10") // <---
.ProcessRequest("POST")
.ReturnResponseAsJSONObject();
```
```json title="Result"
{
"args": {},
"data": "",
"files": {
"file1": "..."
},
"form": {
"Field1": "Text",
"Field2": "10"
},
"headers": {
"Accept": "*/*",
"Accept-Charset": "utf-8",
"Accept-Encoding": "gzip",
"Content-Length": "2114372",
"Content-Type": "multipart/form-data; boundary=8fdb122242404753a0ad3a566c25772d",
"Host": "httpbin.org",
"User-Agent": "1Script v$2.0.0.0",
"X-Amzn-Trace-Id": "Root=1-68c8ad7d-1fec353a3fe4c1192e27f6c7"
},
"json": null,
"origin": "***",
"url": "https://httpbin.org/post"
}
```