I am working on a plugin that will take a form submission and create a task in Asana via their API. I currently have a working model, but it doesn't get the entire data set, just the items from the get_grid_columns
function.
is there a straightforward way to get each field => value pair in a single array that I can then manipulate? not the entire form (which includes form IDs, etc) but just the actual entry fields, which all have a numeric key in the object. I'd prefer no HTML, since Asana can't take HTML, but I'll work with it if that's all I can get.
FWIW, I'm using the gform_entry_created
hook, but I have no issue using another hook / filter if that will give me what I need.