Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.HttpRequest")
set req = CreateObject("Chilkat.HttpRequest")
req.HttpVerb = "POST"
req.Path = "/exchange/api/v1/assets"
req.ContentType = "multipart/form-data"
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set jsonFormData1 = CreateObject("Chilkat.JsonObject")
success = req.AddStringForUpload2("organizationId","",jsonFormData1,"utf-8","application/json")
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set jsonFormData2 = CreateObject("Chilkat.JsonObject")
success = req.AddStringForUpload2("groupId","",jsonFormData2,"utf-8","application/json")
req.AddParam "assetId","{{organization_id}}{{organization_id}}mysoapapp"
req.AddParam "version","{{organization_id}}{{organization_id}}mysoapapp1.0.0"
req.AddParam "{{organization_id}}{{organization_id}}mysoapapp1.0.0my soap app",""
req.AddParam "classifier","{{organization_id}}{{organization_id}}mysoapapp1.0.0my soap appwsdl"
req.AddParam "apiVersion","{{organization_id}}{{organization_id}}mysoapapp1.0.0my soap appwsdlv1"
success = req.AddFileForUpload2("asset"," path to file","application/octet-stream")
req.AddHeader "Authorization","Bearer {{token}}"
req.AddHeader "Expect","100-continue"
' resp is a Chilkat.HttpResponse
Set resp = http.SynchronousRequest("domain.com",443,1,req)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
Curl Command
curl -X POST
-H "Authorization: Bearer {{token}}"
--form 'organizationId={{organization_id}}'
--form 'groupId={{organization_id}}{{organization_id}}'
--form 'assetId={{organization_id}}{{organization_id}}mysoapapp'
--form 'version={{organization_id}}{{organization_id}}mysoapapp1.0.0'
--form 'name={{organization_id}}{{organization_id}}mysoapapp1.0.0my soap app'
--form 'classifier={{organization_id}}{{organization_id}}mysoapapp1.0.0my soap appwsdl'
--form 'apiVersion={{organization_id}}{{organization_id}}mysoapapp1.0.0my soap appwsdlv1'
--form 'asset=@"/path/to/file"'
https://domain.com/exchange/api/v1/assets
Postman Collection Item JSON
{
"name": "Publish new asset on exchange",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "organizationId",
"value": "{{organization_id}}",
"type": "text"
},
{
"key": "groupId",
"value": "{{organization_id}}",
"type": "text"
},
{
"key": "assetId",
"value": "mysoapapp",
"type": "text"
},
{
"key": "version",
"value": "1.0.0",
"type": "text"
},
{
"key": "name",
"value": "my soap app",
"type": "text"
},
{
"key": "classifier",
"value": "wsdl",
"type": "text"
},
{
"key": "apiVersion",
"value": "v1",
"type": "text"
},
{
"key": "asset",
"type": "file",
"src": "/C:/Users/khanamir/Downloads/tshirts.demos.mulesoft.com.wsdl"
}
]
},
"url": {
"raw": "{{url}}/exchange/api/v1/assets",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v1",
"assets"
]
}
},
"response": [
]
}