FuelSDK-Python
FuelSDK-Python copied to clipboard
[BUG] Property name error when trying to retrieve all columns from a data extension
Describe the bug
In sample_dataextension.py, line 74, the property name used to filter a data extension is CustomerKey, which is the CustomerKey for a Data Extension Field. It should be the CustomerKey of a Data Extension.
To Reproduce
Run the sample code in sample_dataextension.py.
Expected behavior
The property name in line 74 should be changed to 'DataExtension.CustomerKey'.
Code snippet
myDEColumn.search_filter = {'Property' : 'DataExtension.CustomerKey','SimpleOperator' : 'equals','Value' : NameOfDE}