How to : UiPath Cloud Orchestrator API with Postman/Python?

@Sidney_Vogel

  1. First create an external application in orchestrator and give confidential application and application scope and save the client id and secret

Then you can use it in postman or python

Body:

{
    grant_type: "client_credentials"
    client_id: "{app_id}"
    client_secret: "{app_secret}"
    scope: "{scopes}"
}

Header:

Content-type to be application/x-www-form-urlencoded

Endpoint: {orchBaseURL}/identity_/connect/token

Using app token

Try in postman first

Cheers