To trigger a UiPath process via API, always use the access token obtained from the /connect/token endpoint with your client ID and secret, then include it as a Bearer token in all subsequent API requests for secure authentication
The key issue in your screenshot is that you are using a GET request instead of a POST request for obtaining the token—UiPath’s /connect/token endpoint requires POST. Additionally, ensure your POST body uses either “x-www-form-urlencoded” or “form-data” with the needed key-value pairs: client_id, client_secret, grant_type, and scope. Using GET will always return “invalid_client” and fail to deliver a token. Correct these settings and you will quickly receive a valid access token.