Passer au contenu principal
GET
https://{tenantDomain}/api/v2
/
flows
/
{id}
C#
using Auth0.ManagementApi;
using System.Threading.Tasks;
using System.Collections.Generic;

public partial class Examples
{
    public async Task Example() {
        var client = new ManagementClient(
            token: "<token>"
        );

        await client.Flows.GetAsync(
            id: "id",
            request: new GetFlowRequestParameters {
                Hydrate = new List<GetFlowRequestParametersHydrateEnum>(){
                    GetFlowRequestParametersHydrateEnum.FormCount,
                }

            }
        );
    }

}
package example

import (
context "context"

management "github.com/auth0/go-auth0/management/management"
client "github.com/auth0/go-auth0/management/management/client"
option "github.com/auth0/go-auth0/management/management/option"
)

func do() {
client := client.NewClient(
option.WithToken(
"<token>",
),
)
request := &management.GetFlowRequestParameters{}
client.Flows.Get(
context.TODO(),
"id",
request,
)
}
package com.example.usage;

import com.auth0.client.mgmt.ManagementApi;
import com.auth0.client.mgmt.resources.flows.requests.GetFlowRequestParameters;
import com.auth0.client.mgmt.types.GetFlowRequestParametersHydrateEnum;
import java.util.Arrays;

public class Example {
public static void main(String[] args) {
ManagementApi client = ManagementApi
.builder()
.token("<token>")
.build();

client.flows().get(
"id",
GetFlowRequestParameters
.builder()
.hydrate(
Arrays.asList(GetFlowRequestParametersHydrateEnum.FORM_COUNT)
)
.build()
);
}
}
<?php

namespace Example;

use Auth0\SDK\API\Management\Management;
use Auth0\SDK\API\Management\Flows\Requests\GetFlowRequestParameters;
use Auth0\SDK\API\Management\Types\GetFlowRequestParametersHydrateEnum;

$client = new Management(
token: '<token>',
);
$client->flows->get(
'id',
new GetFlowRequestParameters([
'hydrate' => [
GetFlowRequestParametersHydrateEnum::FormCount->value,
],
]),
);
from auth0.management import ManagementClient

client = ManagementClient(
token="<token>",
)

client.flows.get(
id="id",
hydrate=[
"form_count"
],
)
require "auth0"

client = Auth0::Management.new(token: "<token>")

client.flows.get(
id: "id",
hydrate: ["form_count"]
)
import { ManagementClient } from "auth0";

async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.flows.get("id", {});
}
main();
import { ManagementClient } from "auth0";

async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.flows.get("id", {});
}
main();
curl --request GET \
--url https://{tenantDomain}/api/v2/flows/{id} \
--header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "actions": [
    {
      "id": "<string>",
      "type": "ACTIVECAMPAIGN",
      "action": "LIST_CONTACTS",
      "params": {
        "connection_id": "<string>",
        "email": "<string>"
      },
      "alias": "<string>",
      "allow_failure": true,
      "mask_output": true
    }
  ],
  "executed_at": "2023-12-25"
}

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

Flow identifier

Maximum string length: 30

Paramètres de requête

hydrate
enum<string>[]

hydration param

Options disponibles:
form_count,
forms
Maximum string length: 50

Réponse

Flow successfully retrieved.

id
string<flow-id>
requis
Maximum string length: 30
name
string
requis
Required string length: 1 - 150
created_at
string<date-time>
requis
updated_at
string<date-time>
requis
actions
object[]
executed_at
string<date>