Class: Hubspot::Crm::Timeline::EventsApi

Inherits:
Object
  • Object
show all
Defined in:
lib/hubspot/codegen/crm/timeline/api/events_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ EventsApi

Returns a new instance of EventsApi.



21
22
23
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 21

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

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



19
20
21
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 19

def api_client
  @api_client
end

Instance Method Details

#create(timeline_event, opts = {}) ⇒ TimelineEventResponse

Create a single event Creates an instance of a timeline event based on an event template. Once created, this event is immutable on the object timeline and cannot be modified. If the event template was configured to update object properties via ‘objectPropertyName`, this call will also attempt to updates those properties, or add them if they don’t exist.

Parameters:

  • timeline_event (TimelineEvent)

    The timeline event definition.

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

    the optional parameters

Returns:



29
30
31
32
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 29

def create(timeline_event, opts = {})
  data, _status_code, _headers = create_with_http_info(timeline_event, opts)
  data
end

#create_batch(batch_input_timeline_event, opts = {}) ⇒ nil

Creates multiple events Creates multiple instances of timeline events based on an event template. Once created, these event are immutable on the object timeline and cannot be modified. If the event template was configured to update object properties via ‘objectPropertyName`, this call will also attempt to updates those properties, or add them if they don’t exist.

Parameters:

  • batch_input_timeline_event (BatchInputTimelineEvent)

    The timeline event definition.

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

    the optional parameters

Returns:

  • (nil)


97
98
99
100
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 97

def create_batch(batch_input_timeline_event, opts = {})
  create_batch_with_http_info(batch_input_timeline_event, opts)
  nil
end

#create_batch_with_http_info(batch_input_timeline_event, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Creates multiple events Creates multiple instances of timeline events based on an event template. Once created, these event are immutable on the object timeline and cannot be modified. If the event template was configured to update object properties via &#x60;objectPropertyName&#x60;, this call will also attempt to updates those properties, or add them if they don&#39;t exist.

Parameters:

  • batch_input_timeline_event (BatchInputTimelineEvent)

    The timeline event definition.

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

    the optional parameters

Returns:

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

    nil, response status code and response headers



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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 107

def create_batch_with_http_info(batch_input_timeline_event, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: EventsApi.create_batch ...'
  end
  # verify the required parameter 'batch_input_timeline_event' is set
  if @api_client.config.client_side_validation && batch_input_timeline_event.nil?
    fail ArgumentError, "Missing the required parameter 'batch_input_timeline_event' when calling EventsApi.create_batch"
  end
  # resource path
  local_var_path = '/crm/v3/timeline/events/batch/create'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json', '*/*'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(batch_input_timeline_event)

  # return_type
  return_type = opts[:debug_return_type]

  # auth_names
  auth_names = opts[:debug_auth_names] || ['oauth2']

  new_options = opts.merge(
    :operation => :"EventsApi.create_batch",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: EventsApi#create_batch\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#create_with_http_info(timeline_event, opts = {}) ⇒ Array<(TimelineEventResponse, Integer, Hash)>

Create a single event Creates an instance of a timeline event based on an event template. Once created, this event is immutable on the object timeline and cannot be modified. If the event template was configured to update object properties via &#x60;objectPropertyName&#x60;, this call will also attempt to updates those properties, or add them if they don&#39;t exist.

Parameters:

  • timeline_event (TimelineEvent)

    The timeline event definition.

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

    the optional parameters

Returns:

  • (Array<(TimelineEventResponse, Integer, Hash)>)

    TimelineEventResponse data, response status code and response headers



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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 39

def create_with_http_info(timeline_event, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: EventsApi.create ...'
  end
  # verify the required parameter 'timeline_event' is set
  if @api_client.config.client_side_validation && timeline_event.nil?
    fail ArgumentError, "Missing the required parameter 'timeline_event' when calling EventsApi.create"
  end
  # resource path
  local_var_path = '/crm/v3/timeline/events'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json', '*/*'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(timeline_event)

  # return_type
  return_type = opts[:debug_return_type] || 'TimelineEventResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['oauth2']

  new_options = opts.merge(
    :operation => :"EventsApi.create",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: EventsApi#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_by_id(event_template_id, event_id, opts = {}) ⇒ TimelineEventResponse

Gets the event This returns the previously created event. It contains all existing info for the event, but not necessarily the CRM object.

Parameters:

  • event_template_id (String)

    The event template ID.

  • event_id (String)

    The event ID.

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

    the optional parameters

Returns:



166
167
168
169
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 166

def get_by_id(event_template_id, event_id, opts = {})
  data, _status_code, _headers = get_by_id_with_http_info(event_template_id, event_id, opts)
  data
end

#get_by_id_with_http_info(event_template_id, event_id, opts = {}) ⇒ Array<(TimelineEventResponse, Integer, Hash)>

Gets the event This returns the previously created event. It contains all existing info for the event, but not necessarily the CRM object.

Parameters:

  • event_template_id (String)

    The event template ID.

  • event_id (String)

    The event ID.

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

    the optional parameters

Returns:

  • (Array<(TimelineEventResponse, Integer, Hash)>)

    TimelineEventResponse data, response status code and response headers



177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
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
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 177

def get_by_id_with_http_info(event_template_id, event_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: EventsApi.get_by_id ...'
  end
  # verify the required parameter 'event_template_id' is set
  if @api_client.config.client_side_validation && event_template_id.nil?
    fail ArgumentError, "Missing the required parameter 'event_template_id' when calling EventsApi.get_by_id"
  end
  # verify the required parameter 'event_id' is set
  if @api_client.config.client_side_validation && event_id.nil?
    fail ArgumentError, "Missing the required parameter 'event_id' when calling EventsApi.get_by_id"
  end
  # resource path
  local_var_path = '/crm/v3/timeline/events/{eventTemplateId}/{eventId}'.sub('{' + 'eventTemplateId' + '}', CGI.escape(event_template_id.to_s)).sub('{' + 'eventId' + '}', CGI.escape(event_id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json', '*/*'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'TimelineEventResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['oauth2']

  new_options = opts.merge(
    :operation => :"EventsApi.get_by_id",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: EventsApi#get_by_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_detail_by_id(event_template_id, event_id, opts = {}) ⇒ EventDetail

Gets the detailTemplate as rendered This will take the ‘detailTemplate` from the event template and return an object rendering the specified event. If the template references `extraData` that isn’t found in the event, it will be ignored and we’ll render without it.

Parameters:

  • event_template_id (String)

    The event template ID.

  • event_id (String)

    The event ID.

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

    the optional parameters

Returns:



235
236
237
238
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 235

def get_detail_by_id(event_template_id, event_id, opts = {})
  data, _status_code, _headers = get_detail_by_id_with_http_info(event_template_id, event_id, opts)
  data
end

#get_detail_by_id_with_http_info(event_template_id, event_id, opts = {}) ⇒ Array<(EventDetail, Integer, Hash)>

Gets the detailTemplate as rendered This will take the &#x60;detailTemplate&#x60; from the event template and return an object rendering the specified event. If the template references &#x60;extraData&#x60; that isn&#39;t found in the event, it will be ignored and we&#39;ll render without it.

Parameters:

  • event_template_id (String)

    The event template ID.

  • event_id (String)

    The event ID.

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

    the optional parameters

Returns:

  • (Array<(EventDetail, Integer, Hash)>)

    EventDetail data, response status code and response headers



246
247
248
249
250
251
252
253
254
255
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
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 246

def get_detail_by_id_with_http_info(event_template_id, event_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: EventsApi.get_detail_by_id ...'
  end
  # verify the required parameter 'event_template_id' is set
  if @api_client.config.client_side_validation && event_template_id.nil?
    fail ArgumentError, "Missing the required parameter 'event_template_id' when calling EventsApi.get_detail_by_id"
  end
  # verify the required parameter 'event_id' is set
  if @api_client.config.client_side_validation && event_id.nil?
    fail ArgumentError, "Missing the required parameter 'event_id' when calling EventsApi.get_detail_by_id"
  end
  # resource path
  local_var_path = '/crm/v3/timeline/events/{eventTemplateId}/{eventId}/detail'.sub('{' + 'eventTemplateId' + '}', CGI.escape(event_template_id.to_s)).sub('{' + 'eventId' + '}', CGI.escape(event_id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json', '*/*'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'EventDetail'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['oauth2']

  new_options = opts.merge(
    :operation => :"EventsApi.get_detail_by_id",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: EventsApi#get_detail_by_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_render_by_id(event_template_id, event_id, opts = {}) ⇒ String

Renders the header or detail as HTML This will take either the ‘headerTemplate` or `detailTemplate` from the event template and render for the specified event as HTML. If the template references `extraData` that isn’t found in the event, it will be ignored and we’ll render without it.

Parameters:

  • event_template_id (String)

    The event template ID.

  • event_id (String)

    The event ID.

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

    the optional parameters

Options Hash (opts):

  • :detail (Boolean)

    Set to &#39;true&#39;, we want to render the &#x60;detailTemplate&#x60; instead of the &#x60;headerTemplate&#x60;.

Returns:

  • (String)


305
306
307
308
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 305

def get_render_by_id(event_template_id, event_id, opts = {})
  data, _status_code, _headers = get_render_by_id_with_http_info(event_template_id, event_id, opts)
  data
end

#get_render_by_id_with_http_info(event_template_id, event_id, opts = {}) ⇒ Array<(String, Integer, Hash)>

Renders the header or detail as HTML This will take either the &#x60;headerTemplate&#x60; or &#x60;detailTemplate&#x60; from the event template and render for the specified event as HTML. If the template references &#x60;extraData&#x60; that isn&#39;t found in the event, it will be ignored and we&#39;ll render without it.

Parameters:

  • event_template_id (String)

    The event template ID.

  • event_id (String)

    The event ID.

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

    the optional parameters

Options Hash (opts):

  • :detail (Boolean)

    Set to &#39;true&#39;, we want to render the &#x60;detailTemplate&#x60; instead of the &#x60;headerTemplate&#x60;.

Returns:

  • (Array<(String, Integer, Hash)>)

    String data, response status code and response headers



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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
# File 'lib/hubspot/codegen/crm/timeline/api/events_api.rb', line 317

def get_render_by_id_with_http_info(event_template_id, event_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: EventsApi.get_render_by_id ...'
  end
  # verify the required parameter 'event_template_id' is set
  if @api_client.config.client_side_validation && event_template_id.nil?
    fail ArgumentError, "Missing the required parameter 'event_template_id' when calling EventsApi.get_render_by_id"
  end
  # verify the required parameter 'event_id' is set
  if @api_client.config.client_side_validation && event_id.nil?
    fail ArgumentError, "Missing the required parameter 'event_id' when calling EventsApi.get_render_by_id"
  end
  # resource path
  local_var_path = '/crm/v3/timeline/events/{eventTemplateId}/{eventId}/render'.sub('{' + 'eventTemplateId' + '}', CGI.escape(event_template_id.to_s)).sub('{' + 'eventId' + '}', CGI.escape(event_id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'detail'] = opts[:'detail'] if !opts[:'detail'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['text/html', '*/*'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'String'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['oauth2']

  new_options = opts.merge(
    :operation => :"EventsApi.get_render_by_id",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: EventsApi#get_render_by_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end