Get Data
You can get data from a thread using the get_data
function:
from abstra.workflows import get_data
get_data('key')
Examples
Getting multiple items at once
You can also get data from an object with multiple items:
from abstra.workflows import get_data
data = get_data("form_info")
name = data["name"]
email = data["email"]
phone = data["phone"]
company = data["company"]
website = data["website"]
industry = data["industry"]