package example
import (
context "context"
management "github.com/auth0/go-auth0/management/management"
client "github.com/auth0/go-auth0/management/management/client"
flows "github.com/auth0/go-auth0/management/management/flows"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := &flows.ExecutionsListRequest{
From: management.String(
"from",
),
Take: management.Int(
1,
),
}
client.Flows.Executions.List(
context.TODO(),
"flow_id",
request,
)
}[
{
"id": "<string>",
"trace_id": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"journey_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z"
}
]package example
import (
context "context"
management "github.com/auth0/go-auth0/management/management"
client "github.com/auth0/go-auth0/management/management/client"
flows "github.com/auth0/go-auth0/management/management/flows"
option "github.com/auth0/go-auth0/management/management/option"
)
func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := &flows.ExecutionsListRequest{
From: management.String(
"from",
),
Take: management.Int(
1,
),
}
client.Flows.Executions.List(
context.TODO(),
"flow_id",
request,
)
}[
{
"id": "<string>",
"trace_id": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"journey_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"ended_at": "2023-11-07T05:31:56Z"
}
]Documentation Index
Fetch the complete documentation index at: https://auth0-feat-testing-docs.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Flow id
30Page index of the results to return. First page is 0.
x >= 0Number of results per page. Defaults to 50.
1 <= x <= 100Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).
Optional Id from which to start selection.
Number of results per page. Defaults to 50.
1 <= x <= 100Flow executions successfully retrieved.
Flow execution identifier
30Trace id
1 - 50Execution status
1 - 50The ISO 8601 formatted date when this flow execution was created.
The ISO 8601 formatted date when this flow execution was updated.
Journey id
1 - 50The ISO 8601 formatted date when this flow execution started.
The ISO 8601 formatted date when this flow execution ended.
このページは役に立ちましたか?