@@ -48,7 +48,10 @@ token = client.get_recent_changes(since_timestamp="YYYY-MM-DD HH:MM:SS")
4848### Deals section, see the api documentation: https://developers.pipedrive.com/docs/api/v1/#!/Deals
4949
5050#### Get deals
51+ If you need a specific deal send the deal id, if you don't just call the method
5152```
53+ get_specific_deal = client.get_deals(deal_id="")
54+
5255get_deals = client.get_deals()
5356```
5457
@@ -130,7 +133,7 @@ get_products_deal = client.get_deal_products(deal_id="")
130133### Notes section, see the api documentation: https://developers.pipedrive.com/docs/api/v1/#!/Notes
131134
132135#### Get notes
133- If you need a specific note send the note id, if you don't just call the method without send anything
136+ If you need a specific note send the note id, if you don't just call the method
134137```
135138get_specific_note = client.get_notes(note_id="")
136139
@@ -139,7 +142,7 @@ get_notes = client.get_notes()
139142
140143#### Add a note
141144```
142- add_note = client.create_note(content="")
145+ add_note = client.create_note(content="", org_id="" )
143146```
144147
145148#### Update a note
@@ -155,7 +158,10 @@ delete_note = client.delete_note(note_id="")
155158### Organizations section, see the api documentation: https://developers.pipedrive.com/docs/api/v1/#!/Organizations
156159
157160#### Get organizations
161+ If you need a specific organization send the organization id, if you don't just call the method
158162```
163+ get_specific_organization = client.get_organizations(org_id="")
164+
159165get_organizations = client.get_organizations()
160166```
161167
@@ -177,7 +183,7 @@ delete_organization = client.delete_organization(data_id="")
177183### Persons section, see the api documentation: https://developers.pipedrive.com/docs/api/v1/#!/Persons
178184
179185#### Get persons
180- If you need the details of a person send the person id, if you don't just call the method without send anything
186+ If you need the details of a person send the person id, if you don't just call the method
181187```
182188get_details_person = client.get_persons(person_id="")
183189
@@ -209,10 +215,46 @@ delete_persons = client.delete_person(data_id="")
209215get_persons_deals = client.get_person_deals(person_id="")
210216```
211217
218+
219+ ### Products section, see the api documentation: https://developers.pipedrive.com/docs/api/v1/#!/Products
220+
221+ #### Get products
222+ If you need a specific product send the product id, if you don't just call the method
223+ ```
224+ get_specific_product = client.get_products(product_id="")
225+
226+ get_products = client.get_products()
227+ ```
228+
229+ #### Get products by name
230+ ```
231+ find_product = client.get_product_by_name(term="")
232+ ```
233+
234+ #### Create a product
235+ ```
236+ add_product = client.create_product(name="")
237+ ```
238+
239+ #### Update a product
240+ ```
241+ update_product = client.update_product(product_id="", name="")
242+ ```
243+
244+ #### Delete a product
245+ ```
246+ delete_product = client.delete_product(product_id="")
247+ ```
248+
249+ #### Get deals where a product is attached to
250+ ```
251+ get_product_deal = client.get_product_deal(product_id="")
252+ ```
253+
212254### Activities section, see the api documentation: https://developers.pipedrive.com/docs/api/v1/#!/Activities
213255
214256#### Get activities
215- If you need the activity details send the activity id, if you don't just call the method without send anything
257+ If you need the activity details send the activity id, if you don't just call the method
216258```
217259get_details_activity = client.get_activities(activity_id="")
218260
0 commit comments