File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
highlevel_oauth/actions/add-contact-to-campaign Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export default {
5959 data,
6060 } ) ;
6161
62- $ . export ( "$summary" , `Sucessfully added voice (ID: ${ response . voice_id } )` ) ;
62+ $ . export ( "$summary" , `Successfully added voice (ID: ${ response . voice_id } )` ) ;
6363 return response ;
6464 } ,
6565} ;
Original file line number Diff line number Diff line change @@ -182,27 +182,27 @@ export default {
182182 } ,
183183 listPhoneNumbers ( args = { } ) {
184184 return this . _makeRequest ( {
185- path : "/ convai/phone-numbers/" ,
185+ path : "convai/phone-numbers/" ,
186186 ...args ,
187187 } ) ;
188188 } ,
189189 listAgents ( args = { } ) {
190190 return this . _makeRequest ( {
191- path : "/ convai/agents" ,
191+ path : "convai/agents" ,
192192 ...args ,
193193 } ) ;
194194 } ,
195195 createAgent ( args = { } ) {
196196 return this . _makeRequest ( {
197197 method : "POST" ,
198- path : "/ convai/agents/create" ,
198+ path : "convai/agents/create" ,
199199 ...args ,
200200 } ) ;
201201 } ,
202202 makeOutboundCall ( args = { } ) {
203203 return this . _makeRequest ( {
204204 method : "POST" ,
205- path : "/ convai/twilio/outbound_call" ,
205+ path : "convai/twilio/outbound_call" ,
206206 ...args ,
207207 } ) ;
208208 } ,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export default {
2929 campaignId : this . campaignId ,
3030 } ) ;
3131 if ( response ?. succeded ) {
32- $ . export ( "$summary" , `Successfully added conatct to campaign with ID: ${ this . campaignId } ` ) ;
32+ $ . export ( "$summary" , `Successfully added contact to campaign with ID: ${ this . campaignId } ` ) ;
3333 }
3434 return response ;
3535 } ,
You can’t perform that action at this time.
0 commit comments