Passer au contenu principal
GET
/
flows
/
{flow_id}
/
executions
/
{execution_id}
TypeScript
import { ManagementClient } from "auth0";

async function main() {
    const client = new ManagementClient({
        token: "<token>",
    });
    await client.flows.executions.get("flow_id", "execution_id", {});
}
main();
{
  "id": "<string>",
  "trace_id": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "journey_id": "<string>",
  "debug": {},
  "started_at": "2023-11-07T05:31:56Z",
  "ended_at": "2023-11-07T05:31:56Z"
}

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

flow_id
string
requis

Flow id

Maximum string length: 30
execution_id
string
requis

Flow execution id

Maximum string length: 30

Paramètres de requête

hydrate
enum<string>[]

Hydration param

Options disponibles:
debug
Maximum string length: 5

Réponse

Flow execution successfully retrieved.

id
string<flow-execution-id>
requis

Flow execution identifier

Maximum string length: 30
trace_id
string
requis

Trace id

Required string length: 1 - 50
status
string
requis

Execution status

Required string length: 1 - 50
created_at
string<date-time>
requis

The ISO 8601 formatted date when this flow execution was created.

updated_at
string<date-time>
requis

The ISO 8601 formatted date when this flow execution was updated.

journey_id
string

Journey id

Required string length: 1 - 50
debug
object

Flow execution debug.

started_at
string<date-time>

The ISO 8601 formatted date when this flow execution started.

ended_at
string<date-time>

The ISO 8601 formatted date when this flow execution ended.