PyPardot4 icon indicating copy to clipboard operation
PyPardot4 copied to clipboard

PyPardot is a wrapper for Version 4 of the Pardot API, written in Python.

Results 17 PyPardot4 issues
Sort by recently updated
recently updated
newest added

As per pardot documentation, "In the Spring '21 and later releases of the Pardot API, authentication with the API key / user key will not be supported". How does pypardot4...

The upcoming Spring '21 release of Salesforce requires that all access to Pardot be authenticated via Single Sign On with Salesforce via OAuth2. This branch provides an approach to enhancing...

Hi, I have a requirement to fetch the Visitor page view objects by using key "visitor_page_view_id" from visitor activity object. Seems that we don't have a direct API object to...

Prospect query throws an AttributeError when it attempts to get the results from the response object... https://github.com/mneedham91/PyPardot4/blob/5b26b871b7d4f6385755b2f3737a299509659ce1/pypardot/objects/prospects.py#L21 ...because the client has set it to the status code (e.g. integer) when...

Hello, Love this api. Thank you. Question, will this api be supported for the upcoming Pardot User Migration: https://help.salesforce.com/articleView?id=000353870&type=1&mode=1&language=en_US&utm_source=techcomms&utm_medium=email&utm_campaign=eol Is there support for Salesforce OATH? thank you,

(redo pr: the previous #42 was opened with my master branch.) As some people reported in #38, Pardot API resources of ver 3 and 4 have different interfaces while the...

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...

Needed to add that the campaign_id is required for method `emails.send_to_id`. Refactored docstrings, e.g. wrapped lines consistently. Edited docstrings only, didn't modify any code.

I have looked at the code for the query method in both `prospects.py` and `tagobjects.py` and it has the following structure to ensure that a consistent list representation of the...

**Sample code set:** from pypardot.client import PardotAPI p = PardotAPI( email='[email protected]', password='password', user_key='userkey' ) p.authenticate() p.prospects.batchUpdate(prospects=[{"id":"100", "field":"value"}, {"id":"101", "filed":"value"}]) **Error:** pypardot.errors.PardotAPIError: Error #71: Input needs to be valid JSON or...