Hi,
I am able to get access token for below request,
https://{Orchstartor Url}/api/Account/Authenticate
Headers
Content-Type application/json
Body
{
“tenancyName”: “TenantName”,
“usernameOrEmailAddress”: “User”,
“password”: “Password”
}
and when i am trying to get release key of process using below request,
https://{Orchestartor Url}/odata/Releases?$filter=ProcessKey eq ‘ProcessName’
Headers
Content-Type → application/json
X-UiPath-TenantName → {{tenantName}}
X-UiPath-OrganizationUnitId -->{{folderId}}
and getting the below response
{
“message”: “You are not authenticated!”,
“errorCode”: 0,
“result”: null,
“targetUrl”: null,
“success”: false,
“error”: {
“code”: 0,
“message”: “You are not authenticated!”,
“details”: “You should be authenticated (sign in) in order to perform this operation.”,
“validationErrors”: null
},
“unAuthorizedRequest”: true,
“__abp”: true
}
Can you please any one help me o this