Skip to content
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

Prospect Query API Missing Fax on Bulk #187

Open
egreer opened this issue Jul 12, 2019 · 0 comments
Open

Prospect Query API Missing Fax on Bulk #187

egreer opened this issue Jul 12, 2019 · 0 comments

Comments

@egreer
Copy link

egreer commented Jul 12, 2019

The fax key is missing when using output=bulk on API v4 when querying prospects

Normal: 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

{
    "@attributes": {
        "stat": "ok",
        "version": 1
    },
    "result": {
        "prospect": {
            "id": 1784404,
            "phone": 15555555555
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant