Update trigger

Update trigger

Endpoint

PUT https://embedworkflow.com/api/v1/triggers/{id}

Path Parameters

id string, required

System-generated unique identifier

Request Body

event string, optional

The trigger's key

title string, optional

Title

Response

Returns successful.

Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
  "id": "01980228-aa41-7058-88bc-ef3f95e574f0",
  "created_at": "2025-07-13T01:01:16-04:00",
  "created_at_string": "Jul 13, 2025 01:01 am EDT",
  "created_at_utc": "2025-07-13T05:01:16Z",
  "data_input_schema": [
    {
      "variable": "user_name",
      "data_path": "user['primary']['name']",
      "display_label": "User name",
      "format": null,
      "groups": [],
      "list_values_variable": null,
      "object": "data_type",
      "required": true,
      "source": "trigger",
      "type": "String",
      "value": null
    },
    {
      "variable": "zip_code",
      "data_path": "addresses[0]['zip']",
      "display_label": "Zip code",
      "format": null,
      "groups": [],
      "list_values_variable": null,
      "object": "data_type",
      "required": true,
      "source": "trigger",
      "type": "String",
      "value": null
    },
    {
      "variable": "title",
      "data_path": "title",
      "display_label": "Title",
      "format": null,
      "groups": [],
      "list_values_variable": null,
      "object": "data_type",
      "required": true,
      "source": "trigger",
      "type": "String",
      "value": null
    }
  ],
  "description": "A new lead signs up",
  "event": "updated_event",
  "groups": [],
  "hook_id": "90d818b9-3810-4bf9-9120-799a721a5f83",
  "icon": {},
  "object": "trigger",
  "on": true,
  "processed_count": 0,
  "title": "New Lead"
}