Class: Hubspot::Cms::Hubdb::TablesApi
- Inherits:
-
Object
- Object
- Hubspot::Cms::Hubdb::TablesApi
- Defined in:
- lib/hubspot/codegen/cms/hubdb/api/tables_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#archive_table(table_id_or_name, opts = {}) ⇒ nil
Archive a table Archive (soft delete) an existing HubDB table.
-
#archive_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Archive a table Archive (soft delete) an existing HubDB table.
-
#clone_draft_table(table_id_or_name, hub_db_table_clone_request, opts = {}) ⇒ HubDbTableV3
Clone a table Clone an existing HubDB table.
-
#clone_draft_table_with_http_info(table_id_or_name, hub_db_table_clone_request, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Clone a table Clone an existing HubDB table.
-
#create_table(hub_db_table_v3_input, opts = {}) ⇒ HubDbTableV3
Create a new table Creates a new draft HubDB table given a JSON schema.
-
#create_table_with_http_info(hub_db_table_v3_input, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Create a new table Creates a new draft HubDB table given a JSON schema.
-
#export_draft_table(table_id_or_name, opts = {}) ⇒ File
Export a draft table Exports the ‘draft` version of a table to CSV / EXCEL format.
-
#export_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(File, Integer, Hash)>
Export a draft table Exports the `draft` version of a table to CSV / EXCEL format.
-
#export_table(table_id_or_name, opts = {}) ⇒ File
Export a published version of a table Exports the ‘live` version of a table to CSV / EXCEL format.
-
#export_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(File, Integer, Hash)>
Export a published version of a table Exports the `live` version of a table to CSV / EXCEL format.
-
#get_all_draft_tables(opts = {}) ⇒ CollectionResponseWithTotalHubDbTableV3ForwardPaging
Return all draft tables Returns the details for each draft table defined in the specified account, including column definitions.
-
#get_all_draft_tables_with_http_info(opts = {}) ⇒ Array<(CollectionResponseWithTotalHubDbTableV3ForwardPaging, Integer, Hash)>
Return all draft tables Returns the details for each draft table defined in the specified account, including column definitions.
-
#get_all_tables(opts = {}) ⇒ CollectionResponseWithTotalHubDbTableV3ForwardPaging
Get all live tables Returns the details for the ‘live` version of each table defined in an account, including column definitions.
-
#get_all_tables_with_http_info(opts = {}) ⇒ Array<(CollectionResponseWithTotalHubDbTableV3ForwardPaging, Integer, Hash)>
Get all live tables Returns the details for the `live` version of each table defined in an account, including column definitions.
-
#get_draft_table_details_by_id(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Get details for a draft table Get the details for the ‘draft` version of a specific HubDB table.
-
#get_draft_table_details_by_id_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Get details for a draft table Get the details for the `draft` version of a specific HubDB table.
-
#get_table_details(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Get details for a live table Returns the details for the ‘live` version of the specified table.
-
#get_table_details_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Get details for a live table Returns the details for the `live` version of the specified table.
-
#import_draft_table(table_id_or_name, opts = {}) ⇒ ImportResult
Import data into draft table Import the contents of a CSV file into an existing HubDB table.
-
#import_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(ImportResult, Integer, Hash)>
Import data into draft table Import the contents of a CSV file into an existing HubDB table.
-
#initialize(api_client = ApiClient.default) ⇒ TablesApi
constructor
A new instance of TablesApi.
-
#publish_draft_table(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Publish a table from draft Copies the data from draft to live version of the table and also publishes the live version.
-
#publish_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Publish a table from draft Copies the data from draft to live version of the table and also publishes the live version.
-
#reset_draft_table(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Reset a draft table Replaces the data in the ‘draft` version of the table with values from the `live` version.
-
#reset_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Reset a draft table Replaces the data in the `draft` version of the table with values from the `live` version.
-
#update_draft_table(table_id_or_name, hub_db_table_v3_input, opts = {}) ⇒ HubDbTableV3
Update an existing table Update an existing HubDB table.
-
#update_draft_table_with_http_info(table_id_or_name, hub_db_table_v3_input, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Update an existing table Update an existing HubDB table.
-
#update_table(table_id_or_name, hub_db_table_v3_live_input, opts = {}) ⇒ HubDbTableV3
Publish or unpublish a live version of a table or restore an archived table Use this endpoint to perform one of the following <ul><li> Publish a live version of a table (without copying table data from draft) </li><li>Un-publish a live version of a table (Leaving the data in the live version)</li><li>Restore an archived table</li></ul> To publish a table, send ‘published` property in the JSON object with the value `true`.
-
#update_table_with_http_info(table_id_or_name, hub_db_table_v3_live_input, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Publish or unpublish a live version of a table or restore an archived table Use this endpoint to perform one of the following <ul><li> Publish a live version of a table (without copying table data from draft) </li><li>Un-publish a live version of a table (Leaving the data in the live version)</li><li>Restore an archived table</li></ul> To publish a table, send `published` property in the JSON object with the value `true`.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
19 20 21 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 19 def api_client @api_client end |
Instance Method Details
#archive_table(table_id_or_name, opts = {}) ⇒ nil
Archive a table Archive (soft delete) an existing HubDB table. This archives both the live and draft versions.
29 30 31 32 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 29 def archive_table(table_id_or_name, opts = {}) archive_table_with_http_info(table_id_or_name, opts) nil end |
#archive_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Archive a table Archive (soft delete) an existing HubDB table. This archives both the live and draft versions.
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 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 39 def archive_table_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.archive_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.archive_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.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(['*/*']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#archive_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#clone_draft_table(table_id_or_name, hub_db_table_clone_request, opts = {}) ⇒ HubDbTableV3
Clone a table Clone an existing HubDB table. The ‘newName` and `newLabel` of the new table can be sent as JSON in the `body` parameter. This will create the cloned table as a `draft`.
92 93 94 95 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 92 def clone_draft_table(table_id_or_name, hub_db_table_clone_request, opts = {}) data, _status_code, _headers = clone_draft_table_with_http_info(table_id_or_name, hub_db_table_clone_request, opts) data end |
#clone_draft_table_with_http_info(table_id_or_name, hub_db_table_clone_request, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Clone a table Clone an existing HubDB table. The `newName` and `newLabel` of the new table can be sent as JSON in the `body` parameter. This will create the cloned table as a `draft`.
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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 103 def clone_draft_table_with_http_info(table_id_or_name, hub_db_table_clone_request, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.clone_draft_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.clone_draft_table" end # verify the required parameter 'hub_db_table_clone_request' is set if @api_client.config.client_side_validation && hub_db_table_clone_request.nil? fail ArgumentError, "Missing the required parameter 'hub_db_table_clone_request' when calling TablesApi.clone_draft_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/draft/clone'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.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', '*/*']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(hub_db_table_clone_request) # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#clone_draft_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#create_table(hub_db_table_v3_input, opts = {}) ⇒ HubDbTableV3
Create a new table Creates a new draft HubDB table given a JSON schema. The table name and label should be unique for each account.
161 162 163 164 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 161 def create_table(hub_db_table_v3_input, opts = {}) data, _status_code, _headers = create_table_with_http_info(hub_db_table_v3_input, opts) data end |
#create_table_with_http_info(hub_db_table_v3_input, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Create a new table Creates a new draft HubDB table given a JSON schema. The table name and label should be unique for each account.
171 172 173 174 175 176 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 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 171 def create_table_with_http_info(hub_db_table_v3_input, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.create_table ...' end # verify the required parameter 'hub_db_table_v3_input' is set if @api_client.config.client_side_validation && hub_db_table_v3_input.nil? fail ArgumentError, "Missing the required parameter 'hub_db_table_v3_input' when calling TablesApi.create_table" end # resource path local_var_path = '/cms/v3/hubdb/tables' # 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' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(hub_db_table_v3_input) # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#create_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#export_draft_table(table_id_or_name, opts = {}) ⇒ File
Export a draft table Exports the ‘draft` version of a table to CSV / EXCEL format.
226 227 228 229 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 226 def export_draft_table(table_id_or_name, opts = {}) data, _status_code, _headers = export_draft_table_with_http_info(table_id_or_name, opts) data end |
#export_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(File, Integer, Hash)>
Export a draft table Exports the `draft` version of a table to CSV / EXCEL format.
237 238 239 240 241 242 243 244 245 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 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 237 def export_draft_table_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.export_draft_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.export_draft_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/draft/export'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'format'] = opts[:'format'] if !opts[:'format'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.ms-excel', 'text/csv', '*/*']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] || 'File' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#export_draft_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#export_table(table_id_or_name, opts = {}) ⇒ File
Export a published version of a table Exports the ‘live` version of a table to CSV / EXCEL format.
291 292 293 294 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 291 def export_table(table_id_or_name, opts = {}) data, _status_code, _headers = export_table_with_http_info(table_id_or_name, opts) data end |
#export_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(File, Integer, Hash)>
Export a published version of a table Exports the `live` version of a table to CSV / EXCEL format.
302 303 304 305 306 307 308 309 310 311 312 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 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 302 def export_table_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.export_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.export_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/export'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'format'] = opts[:'format'] if !opts[:'format'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.ms-excel', 'text/csv', '*/*']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] || 'File' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#export_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_all_draft_tables(opts = {}) ⇒ CollectionResponseWithTotalHubDbTableV3ForwardPaging
Return all draft tables Returns the details for each draft table defined in the specified account, including column definitions.
364 365 366 367 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 364 def get_all_draft_tables(opts = {}) data, _status_code, _headers = get_all_draft_tables_with_http_info(opts) data end |
#get_all_draft_tables_with_http_info(opts = {}) ⇒ Array<(CollectionResponseWithTotalHubDbTableV3ForwardPaging, Integer, Hash)>
Return all draft tables Returns the details for each draft table defined in the specified account, including column definitions.
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 383 def get_all_draft_tables_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.get_all_draft_tables ...' end # resource path local_var_path = '/cms/v3/hubdb/tables/draft' # query parameters query_params = opts[:query_params] || {} query_params[:'updatedAfter'] = opts[:'updated_after'] if !opts[:'updated_after'].nil? query_params[:'updatedBefore'] = opts[:'updated_before'] if !opts[:'updated_before'].nil? query_params[:'sort'] = @api_client.build_collection_param(opts[:'sort'], :multi) if !opts[:'sort'].nil? query_params[:'createdAt'] = opts[:'created_at'] if !opts[:'created_at'].nil? query_params[:'createdAfter'] = opts[:'created_after'] if !opts[:'created_after'].nil? query_params[:'after'] = opts[:'after'] if !opts[:'after'].nil? query_params[:'archived'] = opts[:'archived'] if !opts[:'archived'].nil? query_params[:'createdBefore'] = opts[:'created_before'] if !opts[:'created_before'].nil? query_params[:'updatedAt'] = opts[:'updated_at'] if !opts[:'updated_at'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? # 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[:body] # return_type return_type = opts[:return_type] || 'CollectionResponseWithTotalHubDbTableV3ForwardPaging' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#get_all_draft_tables\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_all_tables(opts = {}) ⇒ CollectionResponseWithTotalHubDbTableV3ForwardPaging
Get all live tables Returns the details for the ‘live` version of each table defined in an account, including column definitions.
450 451 452 453 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 450 def get_all_tables(opts = {}) data, _status_code, _headers = get_all_tables_with_http_info(opts) data end |
#get_all_tables_with_http_info(opts = {}) ⇒ Array<(CollectionResponseWithTotalHubDbTableV3ForwardPaging, Integer, Hash)>
Get all live tables Returns the details for the `live` version of each table defined in an account, including column definitions.
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 469 def get_all_tables_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.get_all_tables ...' end # resource path local_var_path = '/cms/v3/hubdb/tables' # query parameters query_params = opts[:query_params] || {} query_params[:'updatedAfter'] = opts[:'updated_after'] if !opts[:'updated_after'].nil? query_params[:'updatedBefore'] = opts[:'updated_before'] if !opts[:'updated_before'].nil? query_params[:'sort'] = @api_client.build_collection_param(opts[:'sort'], :multi) if !opts[:'sort'].nil? query_params[:'createdAt'] = opts[:'created_at'] if !opts[:'created_at'].nil? query_params[:'createdAfter'] = opts[:'created_after'] if !opts[:'created_after'].nil? query_params[:'after'] = opts[:'after'] if !opts[:'after'].nil? query_params[:'archived'] = opts[:'archived'] if !opts[:'archived'].nil? query_params[:'createdBefore'] = opts[:'created_before'] if !opts[:'created_before'].nil? query_params[:'updatedAt'] = opts[:'updated_at'] if !opts[:'updated_at'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? # 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[:body] # return_type return_type = opts[:return_type] || 'CollectionResponseWithTotalHubDbTableV3ForwardPaging' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#get_all_tables\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_draft_table_details_by_id(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Get details for a draft table Get the details for the ‘draft` version of a specific HubDB table. This will include the definitions for the columns in the table and the number of rows in the table.
529 530 531 532 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 529 def get_draft_table_details_by_id(table_id_or_name, opts = {}) data, _status_code, _headers = get_draft_table_details_by_id_with_http_info(table_id_or_name, opts) data end |
#get_draft_table_details_by_id_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Get details for a draft table Get the details for the `draft` version of a specific HubDB table. This will include the definitions for the columns in the table and the number of rows in the table.
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 541 def get_draft_table_details_by_id_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.get_draft_table_details_by_id ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.get_draft_table_details_by_id" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/draft'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'archived'] = opts[:'archived'] if !opts[:'archived'].nil? query_params[:'includeForeignIds'] = opts[:'include_foreign_ids'] if !opts[:'include_foreign_ids'].nil? # 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[:body] # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#get_draft_table_details_by_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_table_details(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Get details for a live table Returns the details for the ‘live` version of the specified table. This will include the definitions for the columns in the table and the number of rows in the table. Note: This endpoint can be accessed without any authentication if the table is set to be allowed for public access.
597 598 599 600 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 597 def get_table_details(table_id_or_name, opts = {}) data, _status_code, _headers = get_table_details_with_http_info(table_id_or_name, opts) data end |
#get_table_details_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Get details for a live table Returns the details for the `live` version of the specified table. This will include the definitions for the columns in the table and the number of rows in the table. Note: This endpoint can be accessed without any authentication if the table is set to be allowed for public access.
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 609 def get_table_details_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.get_table_details ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.get_table_details" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'archived'] = opts[:'archived'] if !opts[:'archived'].nil? query_params[:'includeForeignIds'] = opts[:'include_foreign_ids'] if !opts[:'include_foreign_ids'].nil? # 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[:body] # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#get_table_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#import_draft_table(table_id_or_name, opts = {}) ⇒ ImportResult
Import data into draft table Import the contents of a CSV file into an existing HubDB table. The data will always be imported into the ‘draft` version of the table. Use `/push-live` endpoint to push these changes to `live` version. This endpoint takes a multi-part POST request. The first part will be a set of JSON-formatted options for the import and you can specify this with the name as `config`. The second part will be the CSV file you want to import and you can specify this with the name as `file`. Refer the overview section to check the details and format of the JSON-formatted options for the import.
665 666 667 668 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 665 def import_draft_table(table_id_or_name, opts = {}) data, _status_code, _headers = import_draft_table_with_http_info(table_id_or_name, opts) data end |
#import_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(ImportResult, Integer, Hash)>
Import data into draft table Import the contents of a CSV file into an existing HubDB table. The data will always be imported into the `draft` version of the table. Use `/push-live` endpoint to push these changes to `live` version. This endpoint takes a multi-part POST request. The first part will be a set of JSON-formatted options for the import and you can specify this with the name as `config`. The second part will be the CSV file you want to import and you can specify this with the name as `file`. Refer the overview section to check the details and format of the JSON-formatted options for the import.
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 677 def import_draft_table_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.import_draft_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.import_draft_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/draft/import'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.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', '*/*']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['multipart/form-data']) # form parameters form_params = opts[:form_params] || {} form_params['file'] = opts[:'file'] if !opts[:'file'].nil? form_params['config'] = opts[:'config'] if !opts[:'config'].nil? # http body (model) post_body = opts[:body] # return_type return_type = opts[:return_type] || 'ImportResult' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#import_draft_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#publish_draft_table(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Publish a table from draft Copies the data from draft to live version of the table and also publishes the live version. This will immediately push the data to the ‘live` version of the table and publishes the live version, meaning any website pages using data from the table will be updated.
734 735 736 737 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 734 def publish_draft_table(table_id_or_name, opts = {}) data, _status_code, _headers = publish_draft_table_with_http_info(table_id_or_name, opts) data end |
#publish_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Publish a table from draft Copies the data from draft to live version of the table and also publishes the live version. This will immediately push the data to the `live` version of the table and publishes the live version, meaning any website pages using data from the table will be updated.
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 745 def publish_draft_table_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.publish_draft_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.publish_draft_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/draft/push-live'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'includeForeignIds'] = opts[:'include_foreign_ids'] if !opts[:'include_foreign_ids'].nil? # 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[:body] # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#publish_draft_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#reset_draft_table(table_id_or_name, opts = {}) ⇒ HubDbTableV3
Reset a draft table Replaces the data in the ‘draft` version of the table with values from the `live` version. Any unpublished changes in the `draft` will be lost after this call is made.
799 800 801 802 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 799 def reset_draft_table(table_id_or_name, opts = {}) data, _status_code, _headers = reset_draft_table_with_http_info(table_id_or_name, opts) data end |
#reset_draft_table_with_http_info(table_id_or_name, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Reset a draft table Replaces the data in the `draft` version of the table with values from the `live` version. Any unpublished changes in the `draft` will be lost after this call is made.
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 810 def reset_draft_table_with_http_info(table_id_or_name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.reset_draft_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.reset_draft_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/draft/reset'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'includeForeignIds'] = opts[:'include_foreign_ids'] if !opts[:'include_foreign_ids'].nil? # 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[:body] # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#reset_draft_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_draft_table(table_id_or_name, hub_db_table_v3_input, opts = {}) ⇒ HubDbTableV3
Update an existing table Update an existing HubDB table. You can use this endpoint to add or remove columns to the table. Tables updated using the endpoint will only modify the ‘draft` verion of the table. Use `push-live` endpoint to push all the changes to the `live` version. Note: You need to include all the columns in the input when you are adding/removing/updating a column. If you do not include an already existing column in the request, it will be deleted.
865 866 867 868 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 865 def update_draft_table(table_id_or_name, hub_db_table_v3_input, opts = {}) data, _status_code, _headers = update_draft_table_with_http_info(table_id_or_name, hub_db_table_v3_input, opts) data end |
#update_draft_table_with_http_info(table_id_or_name, hub_db_table_v3_input, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Update an existing table Update an existing HubDB table. You can use this endpoint to add or remove columns to the table. Tables updated using the endpoint will only modify the `draft` verion of the table. Use `push-live` endpoint to push all the changes to the `live` version. Note: You need to include all the columns in the input when you are adding/removing/updating a column. If you do not include an already existing column in the request, it will be deleted.
877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 877 def update_draft_table_with_http_info(table_id_or_name, hub_db_table_v3_input, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.update_draft_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.update_draft_table" end # verify the required parameter 'hub_db_table_v3_input' is set if @api_client.config.client_side_validation && hub_db_table_v3_input.nil? fail ArgumentError, "Missing the required parameter 'hub_db_table_v3_input' when calling TablesApi.update_draft_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}/draft'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'includeForeignIds'] = opts[:'include_foreign_ids'] if !opts[:'include_foreign_ids'].nil? # 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' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(hub_db_table_v3_input) # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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(:PATCH, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#update_draft_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_table(table_id_or_name, hub_db_table_v3_live_input, opts = {}) ⇒ HubDbTableV3
Publish or unpublish a live version of a table or restore an archived table Use this endpoint to perform one of the following <ul><li> Publish a live version of a table (without copying table data from draft) </li><li>Un-publish a live version of a table (Leaving the data in the live version)</li><li>Restore an archived table</li></ul> To publish a table, send ‘published` property in the JSON object with the value `true`. To unpublish a table, send `published` property in the JSON object with the value `false`. To restore an archived table, send `archived` property in the JSON object with the value `false` along with the query parameter `archived=true`. When restoring an archived table, if an active table already exists with the same `name` or `label`, you will need to change the name of the archived table when restoring it using the `name` and `label` parameters with a new name and new label. When you restore a table, the table will be restored only in the `draft` version. Examples: Publish live version of a table: “` { "published": true } “` Unpublish live version of a table: “` { "published": false } “` Restore a table: (send `archived=true` in query parameters) “` { "archived": false } “` Restore a table with a new name: (send `archived=true` in query parameters) “` { "label": "New Table Name", "name": "new_table_name", "archived": false } “`
939 940 941 942 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 939 def update_table(table_id_or_name, hub_db_table_v3_live_input, opts = {}) data, _status_code, _headers = update_table_with_http_info(table_id_or_name, hub_db_table_v3_live_input, opts) data end |
#update_table_with_http_info(table_id_or_name, hub_db_table_v3_live_input, opts = {}) ⇒ Array<(HubDbTableV3, Integer, Hash)>
Publish or unpublish a live version of a table or restore an archived table Use this endpoint to perform one of the following <ul><li> Publish a live version of a table (without copying table data from draft) </li><li>Un-publish a live version of a table (Leaving the data in the live version)</li><li>Restore an archived table</li></ul> To publish a table, send `published` property in the JSON object with the value `true`. To unpublish a table, send `published` property in the JSON object with the value `false`. To restore an archived table, send `archived` property in the JSON object with the value `false` along with the query parameter `archived=true`. When restoring an archived table, if an active table already exists with the same `name` or `label`, you will need to change the name of the archived table when restoring it using the `name` and `label` parameters with a new name and new label. When you restore a table, the table will be restored only in the `draft` version. Examples: Publish live version of a table: ``` { "published": true } ``` Unpublish live version of a table: ``` { "published": false } ``` Restore a table: (send `archived=true` in query parameters) ``` { "archived": false } ``` Restore a table with a new name: (send `archived=true` in query parameters) ``` { "label": "New Table Name", "name": "new_table_name", "archived": false } ```
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 |
# File 'lib/hubspot/codegen/cms/hubdb/api/tables_api.rb', line 952 def update_table_with_http_info(table_id_or_name, hub_db_table_v3_live_input, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TablesApi.update_table ...' end # verify the required parameter 'table_id_or_name' is set if @api_client.config.client_side_validation && table_id_or_name.nil? fail ArgumentError, "Missing the required parameter 'table_id_or_name' when calling TablesApi.update_table" end # verify the required parameter 'hub_db_table_v3_live_input' is set if @api_client.config.client_side_validation && hub_db_table_v3_live_input.nil? fail ArgumentError, "Missing the required parameter 'hub_db_table_v3_live_input' when calling TablesApi.update_table" end # resource path local_var_path = '/cms/v3/hubdb/tables/{tableIdOrName}'.sub('{' + 'tableIdOrName' + '}', CGI.escape(table_id_or_name.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'archived'] = opts[:'archived'] if !opts[:'archived'].nil? query_params[:'includeForeignIds'] = opts[:'include_foreign_ids'] if !opts[:'include_foreign_ids'].nil? # 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' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] || @api_client.object_to_http_body(hub_db_table_v3_live_input) # return_type return_type = opts[:return_type] || 'HubDbTableV3' # auth_names auth_names = opts[:auth_names] || ['hapikey', 'oauth2'] = opts.merge( :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(:PATCH, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: TablesApi#update_table\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |