API call + Microsoft Flow

Hi,
I’m trying to make a connector using uipath orchestrator api, But not able to solve following errors if someone can help me out will be appreciated

Errors

Semantic error at paths./{{tenant}}/{{service}}/odata/Machines

Declared path parameter “{tenant” needs to be defined as a path parameter at either the path or operation level

Jump to line 11

Semantic error at paths./{{tenant}}/{{service}}/odata/Machines

Declared path parameter “{service” needs to be defined as a path parameter at either the path or operation level

Jump to line 11

Semantic error at paths./{AccountLogicalName}/{ServiceInstanceLogicalName}/odata/Machines

Declared path parameter “AccountLogicalName” needs to be defined as a path parameter at either the path or operation level

Jump to line 13

Semantic error at paths./{AccountLogicalName}/{ServiceInstanceLogicalName}/odata/Machines

Declared path parameter “ServiceInstanceLogicalName” needs to be defined as a path parameter at either the path or operation level

Jump to line 13

Semantic error at paths./{AccountLogicalName}/{ServiceInstanceLogicalName}/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs

Declared path parameter “AccountLogicalName” needs to be defined as a path parameter at either the path or operation level

Jump to line 14

Semantic error at paths./{AccountLogicalName}/{ServiceInstanceLogicalName}/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs

Declared path parameter “ServiceInstanceLogicalName” needs to be defined as a path parameter at either the path or operation level

Jump to line 14

1 Like

arent you just missing an extra { where you want parameters?
./{AccountLogicalName}/{ServiceInstanceLogicalName}/odata/Machines
to be:
./{{AccountLogicalName}}/{{ServiceInstanceLogicalName}}/odata/Machines
for example

1 Like

thats for oncloud im trying to use it for on-prem api call . If you can help to create a postman file likeUiPath.swagger.json (65.7 KB)
Please update me what you think about it

1 Like