phpExt / Orchestrator / License - Upload file
Back to Collection Items
<?php
include("chilkat.php");
// Use "chilkat_9_5_0.php" for versions of Chilkat < 10.0.0
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
$req = new CkHttpRequest();
$req->put_HttpVerb('POST');
$req->put_Path('/odata/Settings/UiPath.Server.Configuration.OData.UploadLicense');
$req->put_ContentType('multipart/form-data');
$req->AddParam('','');
$req->AddHeader('Authorization','Bearer <access_token>');
$req->AddHeader('X-UIPATH-OrganizationUnitId','{{folderId}}');
$req->AddHeader('X-UIPATH-TenantName','{{tenantName}}');
// resp is a CkHttpResponse
$resp = $http->SynchronousRequest('domain.com',443,true,$req);
if ($http->get_LastMethodSuccess() == false) {
print $http->lastErrorText() . "\n";
exit;
}
print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";
?>
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": [
]
}