Passer au contenu principal
PATCH
https://{tenantDomain}/api/v2
/
flows
/
{id}
Go
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.UpdateFlowRequestContent{}
    client.Flows.Update(
        context.TODO(),
        "id",
        request,
    )
}
import { ManagementClient } from "auth0";

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

async function main() {
const client = new ManagementClient({
token: "<token>",
});
await client.flows.update("id", {});
}
main();
curl --request PATCH \
--url https://{tenantDomain}/api/v2/flows/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"actions": [
{
"id": "<string>",
"type": "ACTIVECAMPAIGN",
"action": "LIST_CONTACTS",
"params": {
"connection_id": "<string>",
"email": "<string>"
},
"alias": "<string>",
"allow_failure": true,
"mask_output": true
}
]
}
'
import requests

url = "https://{tenantDomain}/api/v2/flows/{id}"

payload = {
"name": "<string>",
"actions": [
{
"id": "<string>",
"type": "ACTIVECAMPAIGN",
"action": "LIST_CONTACTS",
"params": {
"connection_id": "<string>",
"email": "<string>"
},
"alias": "<string>",
"allow_failure": True,
"mask_output": True
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.patch(url, json=payload, headers=headers)

print(response.text)
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://{tenantDomain}/api/v2/flows/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'actions' => [
[
'id' => '<string>',
'type' => 'ACTIVECAMPAIGN',
'action' => 'LIST_CONTACTS',
'params' => [
'connection_id' => '<string>',
'email' => '<string>'
],
'alias' => '<string>',
'allow_failure' => true,
'mask_output' => true
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
HttpResponse<String> response = Unirest.patch("https://{tenantDomain}/api/v2/flows/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"actions\": [\n {\n \"id\": \"<string>\",\n \"type\": \"ACTIVECAMPAIGN\",\n \"action\": \"LIST_CONTACTS\",\n \"params\": {\n \"connection_id\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"alias\": \"<string>\",\n \"allow_failure\": true,\n \"mask_output\": true\n }\n ]\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://{tenantDomain}/api/v2/flows/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"actions\": [\n {\n \"id\": \"<string>\",\n \"type\": \"ACTIVECAMPAIGN\",\n \"action\": \"LIST_CONTACTS\",\n \"params\": {\n \"connection_id\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"alias\": \"<string>\",\n \"allow_failure\": true,\n \"mask_output\": true\n }\n ]\n}"

response = http.request(request)
puts response.read_body
{
  "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

Corps

name
string
Required string length: 1 - 150
actions
object[] | null

Réponse

Flow successfully updated.

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>