12-03-24 10:55 AM
Hi all,
Good day!
Kindly help on the below requirements.
Currently, We are working on the Blue Prism internal project which needs to access and manage the functionality of control room(start processes, monitor the status of processes) through API. To call the Control room API from Swagger or curl the list of inputs are required , Control room URL ,Server name, Port, Username & Password. Please let me know the information to call the control room API.
BP version - V7.2.1
license type - learning edititon
POST /api/login/
Host: <BluePrism_Server>:<Port>
Content-Type: application/json
{
"username": "your_username",
"password": "your_password"
}
Answered! Go to Answer.
12-03-24 03:57 PM
Hello @sarmanickam
The Blue Prism Learning Edition is feature limited and does not support the use of the Blue Prism API.
The Blue Prism API is something that is optionally deployed alongside the full Blue Prism Enterprise application.
- Online Help: https://bpdocs.blueprism.com/bp-7-3/en-us/bp-api/api-spec-home.htm
Best of luck with your internal project
Kind regards
Chris Strong
Senior Senior Product Manager
SS&C | SS&C Blue Prism
12-03-24 03:57 PM
Hello @sarmanickam
The Blue Prism Learning Edition is feature limited and does not support the use of the Blue Prism API.
The Blue Prism API is something that is optionally deployed alongside the full Blue Prism Enterprise application.
- Online Help: https://bpdocs.blueprism.com/bp-7-3/en-us/bp-api/api-spec-home.htm
Best of luck with your internal project
Kind regards
Chris Strong
Senior Senior Product Manager
SS&C | SS&C Blue Prism
12-03-24 04:39 PM
To clarify a bit on Chris' answer... the Control Room API is essentially an optional plugin for the Blue Prism HUB.
You would need a separate server running HUB and all of its dependencies (i.e. Authentication Server, RabbitMQ, etc.) to be configured first, and then have another server to set up the Blue Prism API, and configure it with your HUB.
What you are describing (executing commands on a resource remotely), could also be achieved using the ResourcePC HTTP interface.
You can read more about it here:
ResourcePC HTTP interface (blueprism.com)
And a list of available commands here:
Command line options (blueprism.com)
13-03-24 05:58 AM
13-03-24 06:01 AM
Thank you @Andrzej Silarow