pipedrive-python
pipedrive-python copied to clipboard
Passed the **kwargs, getting error

Hello, it seems like you are passing a dict, not kwargs.
To do so, you need to pass like this:
my_kwargs = {'limit': 400}
get_all_deals = client.deals.get_all_deals(**my_kwargs) OR get_all_deals = client.deals.get_all_deals(limit = 400)
Try this:
client.deals.get_all_deals(params={"limit":"400"})