Automation
API Keys

Running a process with API Keys

5min
prerequisites to run the process using a api key we will require generate a api key in procesio procesio api endpoints can be found here additionally we also provide swagger for our web api endpoints which can be tested here postman for sending the request running a process from procesio using api keys step 1 after generating the procesio api key, you need to copy and save the key name & key value key value will be hashed after navigating off the page step 2 from the procesio api documentation, we will be looking for the post method for running a process as observed in swagger, the endpoint /api/projects/{id}/run requires three parameters process id (the process id, needs to be mentioned in the url) workspace (needs to be mentioned in headers) request body (json, you are required to use the one provided below) { "connectionid" "string" } step 3 from within your procesio workspace, in the process listing tab, obtain the process id for the process that you intend to run (hit the copy to clipboard button) additionally we will need the name of the workspace under which the process was created in the example below the name of the workspace is "demo" running a process from postman using api keys select post method mention the base url and the endpoint base url https //webapi procesio app endpoint /api/projects/e6bb2d64 2f96 4e43 a84b b25a08c0764d/run (includes the process id) in postman from headers include key & key name value & key value workspace & workspace name (example above "demo") in postman from body, raw include { "connectionid" "string"} select json 5\) from postman hit the send button in order to trigger the process for which you configured the request