Endpoint
GET https://embedworkflow.com/api/v1/data_fields
Query Parameters
user_key string, optional
Filter results by user key
event_trigger string, optional
Filter results by event trigger
type string, optional
Data type filter - can be a single type or multiple types
Response
Returns successful.
Response Properties
collection array
No description available
meta object
No description available
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
{ "collection": [ { "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": "John" }, { "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": "Doe" } ], "meta": { "page_limit": null, "has_next_page": false, "has_previous_page": false } }