I am trying to access fields from a specific Wufoo submission by the entryID.
I see in the documentation where I can access entries via iteration of a specific form, but I want to just access one of those entries without having to loop over the entire amount of entries. Is there a way to do that?
GET http://{subdomain}.wufoo.com/api/v3/forms/{identifier}.{format}
EDIT
I also found this GET:
response = urllib2.urlopen(base_url+'forms/s1afea8b1vk0jf7/entries.json?sort=EntryId&sortDirection=DESC')
It looks like I could sort by EntryID, so I am experimenting, but any thoughts are welcome.