unicodeC / Orchestrator / License - Upload file
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkHttpRequestW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkHttpRequestW req;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
req = CkHttpRequestW_Create();
CkHttpRequestW_putHttpVerb(req,L"POST");
CkHttpRequestW_putPath(req,L"/odata/Settings/UiPath.Server.Configuration.OData.UploadLicense");
CkHttpRequestW_putContentType(req,L"multipart/form-data");
CkHttpRequestW_AddParam(req,L"",L"");
CkHttpRequestW_AddHeader(req,L"Authorization",L"Bearer <access_token>");
CkHttpRequestW_AddHeader(req,L"X-UIPATH-OrganizationUnitId",L"{{folderId}}");
CkHttpRequestW_AddHeader(req,L"X-UIPATH-TenantName",L"{{tenantName}}");
resp = CkHttpW_SynchronousRequest(http,L"domain.com",443,TRUE,req);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "X-UIPATH-TenantName: {{tenantName}}"
-H "X-UIPATH-OrganizationUnitId: {{folderId}}"
--form '=@"/path/to/file"'
https://domain.com/odata/Settings/UiPath.Server.Configuration.OData.UploadLicense
Postman Collection Item JSON
{
"name": "License - Upload file",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "X-UIPATH-TenantName",
"value": "{{tenantName}}",
"type": "text"
},
{
"key": "X-UIPATH-OrganizationUnitId",
"value": "{{folderId}}",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "",
"type": "file",
"src": [
]
}
]
},
"url": {
"raw": "{{url}}/odata/Settings/UiPath.Server.Configuration.OData.UploadLicense",
"host": [
"{{url}}"
],
"path": [
"odata",
"Settings",
"UiPath.Server.Configuration.OData.UploadLicense"
]
},
"description": "A method for manually retrieving an authentication token using the login credentials supplied in the Body. This token is then made available to all other calls."
},
"response": [
]
}