Add data as Related
Adds data to the multipart/related body
Function AddDataAsRelated(Val Data, Val DataType, Val ContentID = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Data | - | Arbitrary | ✔ | Data to be written |
DataType | - | String | ✔ | MIME type of data |
ContentID | - | String | ✖ | Content ID, if required |
Returns: DataProcessorObject.OPI_HTTPClient - This processor object
tip
The Multipart record must first be initialized using the StartMultipartBody
function
caution
NOCLI: this method is not available in CLI version
1C:Enterprise/OneScript code example
URL = "https://httpbin.org";
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();
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"
}