@@ -9,53 +9,22 @@ ActivitiesApi | deleteActivity | **DELETE** /activities/{id} | Delete an activit
9
9
ActivitiesApi | getActivities | ** GET** /activities | Get all activities
10
10
ActivitiesApi | getActivity | ** GET** /activities/{id} | Get details of an activity
11
11
ActivitiesApi | updateActivity | ** PATCH** /activities/{id} | Update an activity
12
- BetaApi | addActivity | ** POST** /activities | Add a new activity
13
- BetaApi | addDeal | ** POST** /deals | Add a new deal
14
- BetaApi | addDealProduct | ** POST** /deals/{id}/products | Add a product to a deal
15
- BetaApi | addOrganization | ** POST** /organizations | Add a new organization
16
- BetaApi | addPerson | ** POST** /persons | Add a new person
17
- BetaApi | deleteActivity | ** DELETE** /activities/{id} | Delete an activity
18
- BetaApi | deleteAdditionalDiscount | ** DELETE** /deals/{id}/discounts/{discount_id} | Delete a discount from a deal
19
- BetaApi | deleteDeal | ** DELETE** /deals/{id} | Delete a deal
20
- BetaApi | deleteDealProduct | ** DELETE** /deals/{id}/products/{product_attachment_id} | Delete an attached product from a deal
21
12
BetaApi | deleteInstallment | ** DELETE** /deals/{id}/installments/{installment_id} | Delete an installment from a deal
22
- BetaApi | deleteOrganization | ** DELETE** /organizations/{id} | Delete a organization
23
- BetaApi | deletePerson | ** DELETE** /persons/{id} | Delete a person
24
- BetaApi | getActivities | ** GET** /activities | Get all activities
25
- BetaApi | getActivity | ** GET** /activities/{id} | Get details of an activity
26
- BetaApi | getAdditionalDiscounts | ** GET** /deals/{id}/discounts | List discounts added to a deal
27
- BetaApi | getDeal | ** GET** /deals/{id} | Get details of a deal
28
- BetaApi | getDealProducts | ** GET** /deals/{id}/products | List products attached to a deal
29
- BetaApi | getDeals | ** GET** /deals | Get all deals
30
- BetaApi | getDealsProducts | ** GET** /deals/products | Get deal products of several deals
31
13
BetaApi | getInstallments | ** GET** /deals/installments | List installments added to a list of deals
32
- BetaApi | getOrganization | ** GET** /organizations/{id} | Get details of a organization
33
- BetaApi | getOrganizations | ** GET** /organizations | Get all organizations
34
- BetaApi | getPerson | ** GET** /persons/{id} | Get details of a person
35
- BetaApi | getPersons | ** GET** /persons | Get all persons
36
- BetaApi | postAdditionalDiscount | ** POST** /deals/{id}/discounts | Add a discount to a deal
37
14
BetaApi | postInstallment | ** POST** /deals/{id}/installments | Add an installment to a deal
38
- BetaApi | searchDeals | ** GET** /deals/search | Search deals
39
- BetaApi | searchItem | ** GET** /itemSearch | Perform a search from multiple item types
40
- BetaApi | searchItemByField | ** GET** /itemSearch/field | Perform a search using a specific field from an item type
41
- BetaApi | searchLeads | ** GET** /leads/search | Search leads
42
- BetaApi | searchOrganization | ** GET** /organizations/search | Search organizations
43
- BetaApi | searchPersons | ** GET** /persons/search | Search persons
44
- BetaApi | updateActivity | ** PATCH** /activities/{id} | Update an activity
45
- BetaApi | updateAdditionalDiscount | ** PATCH** /deals/{id}/discounts/{discount_id} | Update a discount added to a deal
46
- BetaApi | updateDeal | ** PATCH** /deals/{id} | Update a deal
47
- BetaApi | updateDealProduct | ** PATCH** /deals/{id}/products/{product_attachment_id} | Update the product attached to a deal
48
15
BetaApi | updateInstallment | ** PATCH** /deals/{id}/installments/{installment_id} | Update an installment added to a deal
49
- BetaApi | updateOrganization | ** PATCH** /organizations/{id} | Update a organization
50
- BetaApi | updatePerson | ** PATCH** /persons/{id} | Update a person
51
16
DealsApi | addDeal | ** POST** /deals | Add a new deal
17
+ DealsApi | addDealFollower | ** POST** /deals/{id}/followers | Add a follower to a deal
52
18
DealsApi | addDealProduct | ** POST** /deals/{id}/products | Add a product to a deal
53
19
DealsApi | deleteAdditionalDiscount | ** DELETE** /deals/{id}/discounts/{discount_id} | Delete a discount from a deal
54
20
DealsApi | deleteDeal | ** DELETE** /deals/{id} | Delete a deal
21
+ DealsApi | deleteDealFollower | ** DELETE** /deals/{id}/followers/{follower_id} | Delete a follower from a deal
55
22
DealsApi | deleteDealProduct | ** DELETE** /deals/{id}/products/{product_attachment_id} | Delete an attached product from a deal
56
23
DealsApi | deleteInstallment | ** DELETE** /deals/{id}/installments/{installment_id} | Delete an installment from a deal
57
24
DealsApi | getAdditionalDiscounts | ** GET** /deals/{id}/discounts | List discounts added to a deal
58
25
DealsApi | getDeal | ** GET** /deals/{id} | Get details of a deal
26
+ DealsApi | getDealFollowers | ** GET** /deals/{id}/followers | List followers of a deal
27
+ DealsApi | getDealFollowersChangelog | ** GET** /deals/{id}/followers/changelog | List followers changelog of a deal
59
28
DealsApi | getDealProducts | ** GET** /deals/{id}/products | List products attached to a deal
60
29
DealsApi | getDeals | ** GET** /deals | Get all deals
61
30
DealsApi | getDealsProducts | ** GET** /deals/products | Get deal products of several deals
@@ -71,14 +40,22 @@ ItemSearchApi | searchItem | **GET** /itemSearch | Perform a search from multipl
71
40
ItemSearchApi | searchItemByField | ** GET** /itemSearch/field | Perform a search using a specific field from an item type
72
41
LeadsApi | searchLeads | ** GET** /leads/search | Search leads
73
42
OrganizationsApi | addOrganization | ** POST** /organizations | Add a new organization
43
+ OrganizationsApi | addOrganizationFollower | ** POST** /organizations/{id}/followers | Add a follower to an organization
74
44
OrganizationsApi | deleteOrganization | ** DELETE** /organizations/{id} | Delete a organization
45
+ OrganizationsApi | deleteOrganizationFollower | ** DELETE** /organizations/{id}/followers/{follower_id} | Delete a follower from an organization
75
46
OrganizationsApi | getOrganization | ** GET** /organizations/{id} | Get details of a organization
47
+ OrganizationsApi | getOrganizationFollowers | ** GET** /organizations/{id}/followers | List followers of an organization
48
+ OrganizationsApi | getOrganizationFollowersChangelog | ** GET** /organizations/{id}/followers/changelog | List followers changelog of an organization
76
49
OrganizationsApi | getOrganizations | ** GET** /organizations | Get all organizations
77
50
OrganizationsApi | searchOrganization | ** GET** /organizations/search | Search organizations
78
51
OrganizationsApi | updateOrganization | ** PATCH** /organizations/{id} | Update a organization
79
52
PersonsApi | addPerson | ** POST** /persons | Add a new person
53
+ PersonsApi | addPersonFollower | ** POST** /persons/{id}/followers | Add a follower to a person
80
54
PersonsApi | deletePerson | ** DELETE** /persons/{id} | Delete a person
55
+ PersonsApi | deletePersonFollower | ** DELETE** /persons/{id}/followers/{follower_id} | Delete a follower from a person
81
56
PersonsApi | getPerson | ** GET** /persons/{id} | Get details of a person
57
+ PersonsApi | getPersonFollowers | ** GET** /persons/{id}/followers | List followers of a person
58
+ PersonsApi | getPersonFollowersChangelog | ** GET** /persons/{id}/followers/changelog | List followers changelog of a person
82
59
PersonsApi | getPersons | ** GET** /persons | Get all persons
83
60
PersonsApi | searchPersons | ** GET** /persons/search | Search persons
84
61
PersonsApi | updatePerson | ** PATCH** /persons/{id} | Update a person
@@ -88,10 +65,14 @@ PipelinesApi | getPipeline | **GET** /pipelines/{id} | Get one pipeline
88
65
PipelinesApi | getPipelines | ** GET** /pipelines | Get all pipelines
89
66
PipelinesApi | updatePipeline | ** PATCH** /pipelines/{id} | Update a pipeline
90
67
ProductsApi | addProduct | ** POST** /products | Add a product
68
+ ProductsApi | addProductFollower | ** POST** /products/{id}/followers | Add a follower to a product
91
69
ProductsApi | addProductVariation | ** POST** /products/{id}/variations | Add a product variation
92
70
ProductsApi | deleteProduct | ** DELETE** /products/{id} | Delete a product
71
+ ProductsApi | deleteProductFollower | ** DELETE** /products/{id}/followers/{follower_id} | Delete a follower from a product
93
72
ProductsApi | deleteProductVariation | ** DELETE** /products/{id}/variations/{product_variation_id} | Delete a product variation
94
73
ProductsApi | getProduct | ** GET** /products/{id} | Get one product
74
+ ProductsApi | getProductFollowers | ** GET** /products/{id}/followers | List followers of a product
75
+ ProductsApi | getProductFollowersChangelog | ** GET** /products/{id}/followers/changelog | List followers changelog of a product
95
76
ProductsApi | getProductVariations | ** GET** /products/{id}/variations | Get all product variations
96
77
ProductsApi | getProducts | ** GET** /products | Get all products
97
78
ProductsApi | searchProducts | ** GET** /products/search | Search products
@@ -102,6 +83,7 @@ StagesApi | deleteStage | **DELETE** /stages/{id} | Delete a stage
102
83
StagesApi | getStage | ** GET** /stages/{id} | Get one stage
103
84
StagesApi | getStages | ** GET** /stages | Get all stages
104
85
StagesApi | updateStage | ** PATCH** /stages/{id} | Update stage details
86
+ UsersApi | getUserFollowers | ** GET** /users/{id}/followers | List followers of a user
105
87
106
88
## Documentation for Authorization
107
89
0 commit comments