Objective-C / Orchestrator / License - Upload file
Back to Collection Items
#import <CkoHttp.h>
#import <CkoHttpRequest.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
CkoHttpRequest *req = [[CkoHttpRequest alloc] init];
req.HttpVerb = @"POST";
req.Path = @"/odata/Settings/UiPath.Server.Configuration.OData.UploadLicense";
req.ContentType = @"multipart/form-data";
[req AddParam: @"" value: @""];
[req AddHeader: @"Authorization" value: @"Bearer <access_token>"];
[req AddHeader: @"X-UIPATH-OrganizationUnitId" value: @"{{folderId}}"];
[req AddHeader: @"X-UIPATH-TenantName" value: @"{{tenantName}}"];
CkoHttpResponse *resp = [http SynchronousRequest: @"domain.com" port: [NSNumber numberWithInt: 443] ssl: YES req: req];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
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": [
]
}