Users API

Manage users and their data within your Embed Workflow account

Available Endpoints

The User Object

key string

Unique identifier for the user

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

email string

User's email address

groups array

Permission groups the user belongs to

hashid string

Short hash identifier for the user

id string

System-generated unique identifier

name string

User's display name

object string

Object type identifier

user_data_schema array

User's data schema configuration

User Object
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
{
  "key": "user-2",
  "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",
  "email": "person3@example.com",
  "groups": null,
  "hashid": "mz8l3",
  "id": "01980228-ab5a-71ce-baf5-6ac590375e33",
  "name": null,
  "object": "user",
  "user_data_schema": [
    {
      "variable": "first_name",
      "data_path": "first_name",
      "display_label": "First Name",
      "format": null,
      "groups": null,
      "list_values_variable": null,
      "object": "data_type",
      "required": false,
      "source": "user",
      "type": "String",
      "value": null
    },
    {
      "variable": "last_name",
      "data_path": "last_name",
      "display_label": "Last Name",
      "format": null,
      "groups": null,
      "list_values_variable": null,
      "object": "data_type",
      "required": false,
      "source": "user",
      "type": "String",
      "value": null
    }
  ]
}