Running an Automation
Retrieve run details
This endpoint can be used to poll for completion and retrieve final flow outputs. Output nodes must be used to retrieve outputs.
GET
/
get_pl_run
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
run_id
string
requiredID of the flow run to retrieve
user_id
string
The id for the user initiating the flow. Required if project_id is not provided.
project_id
string
The id of the project within which the flow is executed. Required if user_id is not provided.
Response
200 - application/json
user_id
string
The id for the user initiating the flow.
state
enum<string>
Available options:
RUNNING
, DONE
, TERMINATING
, FAILED
, TERMINATED
outputs
object
JSON object where keys are the output_name
parameters of your Gumloop Output nodes and the values are the values that get sent to your node.
created_ts
string
Timestamp for when the flow was started.
finished_ts
string
Timestamp for when the flow completed.
log
string[]
A list of log entries from your Gumloop flow run.