Skip to main content

I looked at this as well, but not sure if it’s the same problem


I haven’t changed my API in a long time, but for some reason when I do the following get:


returned_dictionary = at.get(unit_history, view='Default', filter_by_formula = search_term)


Where search_term is equal to: '{Unit I.D.} = "510040000751373238393835"'


And here is the data in the TABLE and the CORRECT COLUMN. (Click the image to see the record.)


but returned_dictionary just returns OrderedDict(i('records', s])])

I would guess that the view, “Default” has changed or been removed. Try changing this:


returned_dictionary = at.get(unit_history, view='Default', filter_by_formula = search_term)


to this


returned_dictionary = at.get(unit_history, view='', filter_by_formula = search_term)


Reply