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.

Response Properties

id string

System-generated unique identifier

created_at string

Created at in specified timezone

created_at_string string

Created at formatted as human-readable string

created_at_utc string

Created at in UTC

description string

Short description for the trigger

event string

Event type that activates this trigger

groups array

Permission groups for this trigger

hook_id string

Hook identifier for the trigger

icon object

Icon configuration for the trigger

object string

Object type identifier

on boolean

Whether the trigger is enabled

processed_count integer

Number of times this trigger has been processed

title string

Display title for the trigger

data_input_schema array

Data input schema for the trigger

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
57
58
59
60
61
62
63
64
65
{
  "id": "019add30-7f35-797d-9f49-55441c612e8e",
  "created_at": "2025-12-01T22:52:14-05:00",
  "created_at_string": "Dec 01, 2025 10:52 pm EST",
  "created_at_utc": "2025-12-02T03:52:14Z",
  "data_input_schema": [
    {
      "variable": "user_name",
      "children": null,
      "data_path": "user['primary']['name']",
      "display_label": "User name",
      "format": null,
      "groups": [],
      "item_type": null,
      "iterator": null,
      "list_values_variable": null,
      "object": "data_type",
      "required": true,
      "source": "trigger",
      "type": "String",
      "value": null
    },
    {
      "variable": "zip_code",
      "children": null,
      "data_path": "addresses[0]['zip']",
      "display_label": "Zip code",
      "format": null,
      "groups": [],
      "item_type": null,
      "iterator": null,
      "list_values_variable": null,
      "object": "data_type",
      "required": true,
      "source": "trigger",
      "type": "String",
      "value": null
    },
    {
      "variable": "title",
      "children": null,
      "data_path": "title",
      "display_label": "Title",
      "format": null,
      "groups": [],
      "item_type": null,
      "iterator": null,
      "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": "4dc7eb31-6b0b-4f9a-b030-b51b21f3cedd",
  "icon": {},
  "object": "trigger",
  "on": true,
  "processed_count": 0,
  "title": "New Lead"
}