8000 ET_DataExtension_Column should query DataExtension.CustomerKey by wdbetts · Pull Request #89 · salesforce-marketingcloud/FuelSDK-Python · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

ET_DataExtension_ 8000 Column should query DataExtension.CustomerKey #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to fi 8000 le
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion objsamples/sample_dataextension.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
myDEColumn = ET_Client.ET_DataExtension_Column()
myDEColumn.auth_stub = stubObj
myDEColumn.props = ["Name"]
myDEColumn.search_filter = {'Property' : 'CustomerKey','SimpleOperator' : 'equals','Value' : NameOfDE}
myDEColumn.search_filter = {'Property' : 'DataExtension.CustomerKey','SimpleOperator' : 'equals','Value' : NameOfDE}
getResponse = myDEColumn.get()
print('Retrieve Status: ' + str(getResponse.status))
print('Code: ' + str(getResponse.code))
Expand Down
0