Class: SibApiV3Sdk::DealsApi

Inherits:
Object
  • Object
show all
Defined in:
lib/sib-api-v3-sdk/api/deals_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ DealsApi

Returns a new instance of DealsApi.



19
20
21
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 19

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#crm_attributes_deals_get(opts = {}) ⇒ DealAttributes

Get deal attributes

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



25
26
27
28
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 25

def crm_attributes_deals_get(opts = {})
  data, _status_code, _headers = crm_attributes_deals_get_with_http_info(opts)
  data
end

#crm_attributes_deals_get_with_http_info(opts = {}) ⇒ Array<(DealAttributes, Fixnum, Hash)>

Get deal attributes

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(DealAttributes, Fixnum, Hash)>)

    DealAttributes data, response status code and response headers



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 33

def crm_attributes_deals_get_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_attributes_deals_get ...'
  end
  # resource path
  local_var_path = '/crm/attributes/deals'

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'DealAttributes')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_attributes_deals_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#crm_deals_get(opts = {}) ⇒ DealsList

Get all deals

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :filter_attributes (String)

    Filter by attrbutes. If you have filter for owner on your side please send it as &#x60;attributes.owner&#x60;.&quot;

  • :filter_linked_companies_ids (String)

    Filter by linked companies ids

  • :filter_linked_contacts_ids (String)

    Filter by linked companies ids

  • :offset (Integer)

    Index of the first document of the page

  • :limit (Integer)

    Number of documents per page (default to 50)

  • :sort (String)

    Sort the results in the ascending/descending order. Default order is descending by creation if &#x60;sort&#x60; is not passed

  • :sort_by (String)

    The field used to sort field names.

Returns:



78
79
80
81
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 78

def crm_deals_get(opts = {})
  data, _status_code, _headers = crm_deals_get_with_http_info(opts)
  data
end

#crm_deals_get_with_http_info(opts = {}) ⇒ Array<(DealsList, Fixnum, Hash)>

Get all deals

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :filter_attributes (String)

    Filter by attrbutes. If you have filter for owner on your side please send it as &#x60;attributes.owner&#x60;.&quot;

  • :filter_linked_companies_ids (String)

    Filter by linked companies ids

  • :filter_linked_contacts_ids (String)

    Filter by linked companies ids

  • :offset (Integer)

    Index of the first document of the page

  • :limit (Integer)

    Number of documents per page

  • :sort (String)

    Sort the results in the ascending/descending order. Default order is descending by creation if &#x60;sort&#x60; is not passed

  • :sort_by (String)

    The field used to sort field names.

Returns:

  • (Array<(DealsList, Fixnum, Hash)>)

    DealsList data, response status code and response headers



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 93

def crm_deals_get_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_deals_get ...'
  end
  if @api_client.config.client_side_validation && opts[:'sort'] && !['asc', 'desc'].include?(opts[:'sort'])
    fail ArgumentError, 'invalid value for "sort", must be one of asc, desc'
  end
  # resource path
  local_var_path = '/crm/deals'

  # query parameters
  query_params = {}
  query_params[:'filter[attributes]'] = opts[:'filter_attributes'] if !opts[:'filter_attributes'].nil?
  query_params[:'filter[linkedCompaniesIds]'] = opts[:'filter_linked_companies_ids'] if !opts[:'filter_linked_companies_ids'].nil?
  query_params[:'filter[linkedContactsIds]'] = opts[:'filter_linked_contacts_ids'] if !opts[:'filter_linked_contacts_ids'].nil?
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
  query_params[:'sortBy'] = opts[:'sort_by'] if !opts[:'sort_by'].nil?

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'DealsList')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_deals_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#crm_deals_id_delete(id, opts = {}) ⇒ nil

Delete a deal

Parameters:

  • id
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


142
143
144
145
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 142

def crm_deals_id_delete(id, opts = {})
  crm_deals_id_delete_with_http_info(id, opts)
  nil
end

#crm_deals_id_delete_with_http_info(id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>

Delete a deal

Parameters:

  • id
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Fixnum, Hash)>)

    nil, response status code and response headers



151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 151

def crm_deals_id_delete_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_deals_id_delete ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DealsApi.crm_deals_id_delete"
  end
  # resource path
  local_var_path = '/crm/deals/{id}'.sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_deals_id_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#crm_deals_id_get(id, opts = {}) ⇒ Deal

Get a deal

Parameters:

  • id
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



193
194
195
196
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 193

def crm_deals_id_get(id, opts = {})
  data, _status_code, _headers = crm_deals_id_get_with_http_info(id, opts)
  data
end

#crm_deals_id_get_with_http_info(id, opts = {}) ⇒ Array<(Deal, Fixnum, Hash)>

Get a deal

Parameters:

  • id
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(Deal, Fixnum, Hash)>)

    Deal data, response status code and response headers



202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 202

def crm_deals_id_get_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_deals_id_get ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DealsApi.crm_deals_id_get"
  end
  # resource path
  local_var_path = '/crm/deals/{id}'.sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'Deal')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_deals_id_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#crm_deals_id_patch(id, body, opts = {}) ⇒ nil

Update a deal

Parameters:

  • id
  • body

    Updated deal details.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


246
247
248
249
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 246

def crm_deals_id_patch(id, body, opts = {})
  crm_deals_id_patch_with_http_info(id, body, opts)
  nil
end

#crm_deals_id_patch_with_http_info(id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>

Update a deal

Parameters:

  • id
  • body

    Updated deal details.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Fixnum, Hash)>)

    nil, response status code and response headers



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 256

def crm_deals_id_patch_with_http_info(id, body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_deals_id_patch ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DealsApi.crm_deals_id_patch"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling DealsApi.crm_deals_id_patch"
  end
  # resource path
  local_var_path = '/crm/deals/{id}'.sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_deals_id_patch\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

Link and Unlink a deal with contacts and companies

Parameters:

  • id
  • body

    Linked / Unlinked contacts and companies ids.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


303
304
305
306
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 303

def crm_deals_link_unlink_id_patch(id, body, opts = {})
  crm_deals_link_unlink_id_patch_with_http_info(id, body, opts)
  nil
end

Link and Unlink a deal with contacts and companies

Parameters:

  • id
  • body

    Linked / Unlinked contacts and companies ids.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Fixnum, Hash)>)

    nil, response status code and response headers



313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 313

def crm_deals_link_unlink_id_patch_with_http_info(id, body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_deals_link_unlink_id_patch ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DealsApi.crm_deals_link_unlink_id_patch"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling DealsApi.crm_deals_link_unlink_id_patch"
  end
  # resource path
  local_var_path = '/crm/deals/link-unlink/{id}'.sub('{' + 'id' + '}', id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:PATCH, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_deals_link_unlink_id_patch\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#crm_deals_post(body, opts = {}) ⇒ InlineResponse201

Create a deal

Parameters:

  • body

    Deal create data.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



359
360
361
362
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 359

def crm_deals_post(body, opts = {})
  data, _status_code, _headers = crm_deals_post_with_http_info(body, opts)
  data
end

#crm_deals_post_with_http_info(body, opts = {}) ⇒ Array<(InlineResponse201, Fixnum, Hash)>

Create a deal

Parameters:

  • body

    Deal create data.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(InlineResponse201, Fixnum, Hash)>)

    InlineResponse201 data, response status code and response headers



368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 368

def crm_deals_post_with_http_info(body, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_deals_post ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling DealsApi.crm_deals_post"
  end
  # resource path
  local_var_path = '/crm/deals'

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(body)
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:POST, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'InlineResponse201')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_deals_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#crm_pipeline_details_get(opts = {}) ⇒ Pipeline

Get pipeline stages

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



410
411
412
413
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 410

def crm_pipeline_details_get(opts = {})
  data, _status_code, _headers = crm_pipeline_details_get_with_http_info(opts)
  data
end

#crm_pipeline_details_get_with_http_info(opts = {}) ⇒ Array<(Pipeline, Fixnum, Hash)>

Get pipeline stages

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(Pipeline, Fixnum, Hash)>)

    Pipeline data, response status code and response headers



418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
# File 'lib/sib-api-v3-sdk/api/deals_api.rb', line 418

def crm_pipeline_details_get_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DealsApi.crm_pipeline_details_get ...'
  end
  # resource path
  local_var_path = '/crm/pipeline/details'

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = ['api-key', 'partner-key']
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'Pipeline')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DealsApi#crm_pipeline_details_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end