GET
/
get_pl_run
curl --request GET \
  --url https://api.gumloop.com/api/v1/get_pl_run \
  --header 'Authorization: Bearer <token>'
{
  "user_id": "<string>",
  "state": "RUNNING",
  "outputs": {},
  "created_ts": "2023-11-07T05:31:56Z",
  "finished_ts": "2023-11-07T05:31:56Z",
  "log": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

run_id
string
required

ID 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
Successful retrieval of flow run details
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.