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

The response is of type object.