-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Query a subset of fields from a table #28
Comments
Hi @tian-l-park , I think you are misunderstanding the query function and confusing it with one of the read functions.
|
Hey @mneedham91 , thank you for your response! Do you know if there is anyway I can query only a subset of fields? I have a big table with 100+ columns and I noticed it takes more than 6s to complete a call. I am thinking maybe by pulling a select number of fields it will run faster. Do you know if there is a function to do that? Thank you! |
The Pardot API itself doesn't allow query filtering on arbitrary fields. We get ID ranging and date, scores and grades filtering only. |
Is it possible to provide a feature that supports fields query either that contains None or with values? |
Hey, I am trying to use
p.prospects.query(fields=[a_list_of_field_names])
to pull only a subset of fields from the prospects table. However, the method only returns 2 columns no matter how long my list is. The returned columns will always beid
and whatever field that is the last element in the list. Am I not passing the parameters correctly? Thank you!The text was updated successfully, but these errors were encountered: