We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The fax key is missing when using output=bulk on API v4 when querying prospects
output=bulk
Normal: https://pi.demo.pardot.com/api/prospect/version/4/do/query?format=json&output=text&fields=phone,fax&limit=1
https://pi.demo.pardot.com/api/prospect/version/4/do/query?format=json&output=text&fields=phone,fax&limit=1
{ "@attributes": { "stat": "ok", "version": 1 }, "result": { "total_results": 4, "prospect": { "id": 1784404, "phone": 15555555555, "fax": 17777777777 } } }
Vs Bulk: https://pi.demo.pardot.com/api/prospect/version/4/do/query?format=json&output=bulk&fields=phone,fax&limit=1
https://pi.demo.pardot.com/api/prospect/version/4/do/query?format=json&output=bulk&fields=phone,fax&limit=1
{ "@attributes": { "stat": "ok", "version": 1 }, "result": { "prospect": { "id": 1784404, "phone": 15555555555 } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The fax key is missing when using
output=bulk
on API v4 when querying prospectsNormal:
https://pi.demo.pardot.com/api/prospect/version/4/do/query?format=json&output=text&fields=phone,fax&limit=1
Vs Bulk:
https://pi.demo.pardot.com/api/prospect/version/4/do/query?format=json&output=bulk&fields=phone,fax&limit=1
The text was updated successfully, but these errors were encountered: