python-pipedrive
python-pipedrive copied to clipboard
Person details
Hi. I'm getting a weird issue. When calling for a function to get details of a person I'm getting the result of all persons. If I'm not mistaken, the following function:
persontofind = pipedrive.persons({'id': crmpersonid}, method="GET")
should return all info about the person whose id was given as an argument. However, I'm getting the same result as if I was using this:
persontofind = pipedrive.persons(method="GET") It retrieves all data about all persons.
Am I doing something wrong or is that a bug?