How the code is sent behind Postman interface?

To the best team in the world.

            Let me explain my problem. I am using the application Docushare from Xerox, and they have API to connect and send documents in it.

            I need help, because I put the parameters in Postman and it worked, but when I try to use in VBA code is not working.

            In the end, my question is How the code is sent behind Postman interface? In my opinion is something with the last parameter “Content-Transfer-Encoding: binary”

            In CODE FROM POSTMAN, you can see the parameters that I put on Postman and to file is the address file string. But I think, behind of interface you send in other format, is it true? If yes, what format you use?

            Model of request to Docushare:
            MODEL FROM DOCUSHARE

            If you read this far, I am thankful for your patience and I hope for your help.

            Regards.

CODE FROM POSTMAN:
{
“info”: {
“_postman_id”: “6afae81b-2890-4b2f-906b-b325af70e705”,
“name”: “DocuShare XPI”,
“schema”: “https://schema.getpostman.com/json/collection/v2.1.0/collection.json”
},
“item”: [
{
“name”: “APPLYUPLOAD-PDF”,
“request”: {
“method”: “POST”,
“header”: [
{
“key”: “User-Agent”,
“value”: “dsaxess”
}
],
“body”: {
“mode”: “formdata”,
“formdata”: [
{
“key”: “max_versions”,
“value”: “4”,
“type”: “text”
},
{
“key”: “title”,
“value”: “Upload Via API - PDF - Titulo”,
“type”: “text”
},
{
“key”: “summary”,
“value”: “Upload Via API - PDF - Resumo”,
“type”: “text”
},
{
“key”: “name”,
“type”: “file”,
“src”: “/C:/Users/DanielEscobar/OneDrive - DOC INT/Documentos/Exemplos/Contratos/425178.9632.pdf”
}
],
“options”: {
“formdata”: {}
}
},
“url”: {
“raw”: “http://34.230.251.130/dsweb/APPLYUPLOAD/Collection-24”,
“protocol”: “http”,
“host”: [
“34”,
“230”,
“251”,
“130”
],
“path”: [
“dsweb”,
“APPLYUPLOAD”,
“Collection-24”
]
}
},
“response”:
}
],
“protocolProfileBehavior”: {}
}

MODEL FROM DOCUSHARE:
Request:
POST /docushare/dscgi/ds.py/APPLYUPLOAD/Collection-11 HTTP/1.1
Host: docushare.xerox.com
DocuShare-Version: 4.1
User-Agent: DsAxess/4.0
Accept-Language: en
Accept: /, text/html
Cookie: AmberUser=48.262C42A1936EB26E59B0833469C153497A817B5BE936876B22.-
1r2eqdev094iqdm2p94k5;Path=/docushare
Content-Length: xxxx
Content-Type: multipart/form-data; boundary=30964dc255e34e01
–30964dc255e34e01
Content-Disposition: form-data; name=“parent”
Collection-11
–30964dc255e34e01
Content-Disposition: form-data; name=“document”
MyDoc.doc
–30964dc255e34e01
Content-Disposition: form-data; name=“max_versions”
4
–30964dc255e34e01
Content-Disposition: form-data; name=“title”
My Doc
–30964dc255e34e01
Content-Disposition: form-data; name=“summary”
–30964dc255e34e01
Content-Disposition: form-data; name=“author”
–30964dc255e34e01
Content-Disposition: form-data; name=“file1”; filename=“WINWORD.DOC”
Content-Type: application/msword
Content-Transfer-Encoding: binary
<<>>
–30964dc255e34e01—