Retrieve trigger

Retrieve trigger

Endpoint

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

Path Parameters

id string, required

System-generated unique identifier

Response

Returns successful.

Errors

  • 404 - not found
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-a995-77d5-b47c-488d98e89232",
  "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": "new_lead",
  "groups": [],
  "hook_id": "a381681c-0e17-4787-9ce9-e164733d348c",
  "icon": {},
  "object": "trigger",
  "on": true,
  "processed_count": 0,
  "title": "New Lead"
}