Class: DocuSign_Rooms::FormGroupsApi
- Inherits:
-
Object
- Object
- DocuSign_Rooms::FormGroupsApi
- Defined in:
- lib/docusign_rooms/api/form_groups_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#assign_form_group_form(form_group_id, account_id, body) ⇒ FormGroupFormToAssign
Assigns a form to a form group.
-
#assign_form_group_form_with_http_info(form_group_id, account_id, body) ⇒ Array<(FormGroupFormToAssign, Fixnum, Hash)>
Assigns a form to a form group.
-
#create_form_group(account_id, body) ⇒ FormGroup
Creates a form group.
-
#create_form_group_with_http_info(account_id, body) ⇒ Array<(FormGroup, Fixnum, Hash)>
Creates a form group.
-
#delete_form_group(form_group_id, account_id) ⇒ nil
Deletes a form group.
-
#delete_form_group_with_http_info(form_group_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Deletes a form group.
-
#get_form_group(form_group_id, account_id) ⇒ FormGroup
Gets a form group.
-
#get_form_group_with_http_info(form_group_id, account_id) ⇒ Array<(FormGroup, Fixnum, Hash)>
Gets a form group.
-
#get_form_groups(account_id, options = DocuSign_Rooms::GetFormGroupsOptions.default) ⇒ FormGroupSummaryList
Get account Form Groups.
-
#get_form_groups_with_http_info(account_id, options = DocuSign_Rooms::GetFormGroupsOptions.default) ⇒ Array<(FormGroupSummaryList, Fixnum, Hash)>
Get account Form Groups.
-
#grant_office_access_to_form_group(form_group_id, office_id, account_id) ⇒ nil
Assign office to a form group so the specified office has access to the form group.
-
#grant_office_access_to_form_group_with_http_info(form_group_id, office_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Assign office to a form group so the specified office has access to the form group.
-
#initialize(api_client = FormGroupsApi.default) ⇒ FormGroupsApi
constructor
A new instance of FormGroupsApi.
-
#remove_form_group_form(form_group_id, form_id, account_id) ⇒ nil
Removes a form from a form group.
-
#remove_form_group_form_with_http_info(form_group_id, form_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Removes a form from a form group.
-
#rename_form_group(form_group_id, account_id, body) ⇒ FormGroup
Renames a form group.
-
#rename_form_group_with_http_info(form_group_id, account_id, body) ⇒ Array<(FormGroup, Fixnum, Hash)>
Renames a form group.
-
#revoke_office_access_from_form_group(form_group_id, office_id, account_id) ⇒ nil
Remove office to a form group so the specified office doesn’t have access to the form group.
-
#revoke_office_access_from_form_group_with_http_info(form_group_id, office_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Remove office to a form group so the specified office doesn't have access to the form group.
Constructor Details
#initialize(api_client = FormGroupsApi.default) ⇒ FormGroupsApi
Returns a new instance of FormGroupsApi.
32 33 34 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 32 def initialize(api_client = FormGroupsApi.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
30 31 32 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 30 def api_client @api_client end |
Instance Method Details
#assign_form_group_form(form_group_id, account_id, body) ⇒ FormGroupFormToAssign
Assigns a form to a form group.
42 43 44 45 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 42 def assign_form_group_form(form_group_id, account_id, body) data, _status_code, _headers = assign_form_group_form_with_http_info(form_group_id, account_id, body) return data end |
#assign_form_group_form_with_http_info(form_group_id, account_id, body) ⇒ Array<(FormGroupFormToAssign, Fixnum, Hash)>
Assigns a form to a form group.
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 91 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 53 def assign_form_group_form_with_http_info(form_group_id, account_id, body) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.assign_form_group_form ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupsApi.assign_form_group_form" if form_group_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.assign_form_group_form" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}/assign_form".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = [] 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 => 'FormGroupFormToAssign') if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#assign_form_group_form\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#create_form_group(account_id, body) ⇒ FormGroup
Creates a form group.
98 99 100 101 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 98 def create_form_group(account_id, body) data, _status_code, _headers = create_form_group_with_http_info(account_id, body) return data end |
#create_form_group_with_http_info(account_id, body) ⇒ Array<(FormGroup, Fixnum, Hash)>
Creates a form group.
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 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 108 def create_form_group_with_http_info(account_id, body) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.create_form_group ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.create_form_group" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = [] 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 => 'FormGroup') if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#create_form_group\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_form_group(form_group_id, account_id) ⇒ nil
Deletes a form group.
151 152 153 154 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 151 def delete_form_group(form_group_id, account_id) delete_form_group_with_http_info(form_group_id, account_id) return nil end |
#delete_form_group_with_http_info(form_group_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Deletes a form group.
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 189 190 191 192 193 194 195 196 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 161 def delete_form_group_with_http_info(form_group_id, account_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.delete_form_group ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupsApi.delete_form_group" if form_group_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.delete_form_group" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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: FormGroupsApi#delete_form_group\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_form_group(form_group_id, account_id) ⇒ FormGroup
Gets a form group.
203 204 205 206 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 203 def get_form_group(form_group_id, account_id) data, _status_code, _headers = get_form_group_with_http_info(form_group_id, account_id) return data end |
#get_form_group_with_http_info(form_group_id, account_id) ⇒ Array<(FormGroup, Fixnum, Hash)>
Gets a form group.
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 241 242 243 244 245 246 247 248 249 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 213 def get_form_group_with_http_info(form_group_id, account_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.get_form_group ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupsApi.get_form_group" if form_group_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.get_form_group" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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 => 'FormGroup') if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#get_form_group\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_form_groups(account_id, options = DocuSign_Rooms::GetFormGroupsOptions.default) ⇒ FormGroupSummaryList
Get account Form Groups.
256 257 258 259 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 256 def get_form_groups(account_id, = DocuSign_Rooms::GetFormGroupsOptions.default) data, _status_code, _headers = get_form_groups_with_http_info(account_id, ) return data end |
#get_form_groups_with_http_info(account_id, options = DocuSign_Rooms::GetFormGroupsOptions.default) ⇒ Array<(FormGroupSummaryList, Fixnum, Hash)>
Get account Form Groups.
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 298 299 300 301 302 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 266 def get_form_groups_with_http_info(account_id, = DocuSign_Rooms::GetFormGroupsOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.get_form_groups ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.get_form_groups" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} query_params[:'count'] = .count if !.count.nil? query_params[:'startPosition'] = .start_position if !.start_position.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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 => 'FormGroupSummaryList') if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#get_form_groups\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#grant_office_access_to_form_group(form_group_id, office_id, account_id) ⇒ nil
Assign office to a form group so the specified office has access to the form group.
310 311 312 313 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 310 def grant_office_access_to_form_group(form_group_id, office_id, account_id) grant_office_access_to_form_group_with_http_info(form_group_id, office_id, account_id) return nil end |
#grant_office_access_to_form_group_with_http_info(form_group_id, office_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Assign office to a form group so the specified office has access to the form group.
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 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 321 def grant_office_access_to_form_group_with_http_info(form_group_id, office_id, account_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.grant_office_access_to_form_group ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupsApi.grant_office_access_to_form_group" if form_group_id.nil? # verify the required parameter 'office_id' is set fail ArgumentError, "Missing the required parameter 'office_id' when calling FormGroupsApi.grant_office_access_to_form_group" if office_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.grant_office_access_to_form_group" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}/grant_office_access/{officeId}".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'officeId' + '}', office_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#grant_office_access_to_form_group\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#remove_form_group_form(form_group_id, form_id, account_id) ⇒ nil
Removes a form from a form group.
366 367 368 369 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 366 def remove_form_group_form(form_group_id, form_id, account_id) remove_form_group_form_with_http_info(form_group_id, form_id, account_id) return nil end |
#remove_form_group_form_with_http_info(form_group_id, form_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Removes a form from a form group.
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 407 408 409 410 411 412 413 414 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 377 def remove_form_group_form_with_http_info(form_group_id, form_id, account_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.remove_form_group_form ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupsApi.remove_form_group_form" if form_group_id.nil? # verify the required parameter 'form_id' is set fail ArgumentError, "Missing the required parameter 'form_id' when calling FormGroupsApi.remove_form_group_form" if form_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.remove_form_group_form" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}/unassign_form/{formId}".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'formId' + '}', form_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#remove_form_group_form\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#rename_form_group(form_group_id, account_id, body) ⇒ FormGroup
Renames a form group.
422 423 424 425 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 422 def rename_form_group(form_group_id, account_id, body) data, _status_code, _headers = rename_form_group_with_http_info(form_group_id, account_id, body) return data end |
#rename_form_group_with_http_info(form_group_id, account_id, body) ⇒ Array<(FormGroup, Fixnum, Hash)>
Renames a form group.
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 433 def rename_form_group_with_http_info(form_group_id, account_id, body) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.rename_form_group ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupsApi.rename_form_group" if form_group_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.rename_form_group" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = [] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'FormGroup') if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#rename_form_group\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#revoke_office_access_from_form_group(form_group_id, office_id, account_id) ⇒ nil
Remove office to a form group so the specified office doesn’t have access to the form group.
479 480 481 482 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 479 def revoke_office_access_from_form_group(form_group_id, office_id, account_id) revoke_office_access_from_form_group_with_http_info(form_group_id, office_id, account_id) return nil end |
#revoke_office_access_from_form_group_with_http_info(form_group_id, office_id, account_id) ⇒ Array<(nil, Fixnum, Hash)>
Remove office to a form group so the specified office doesn't have access to the form group.
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 521 522 523 524 525 526 527 |
# File 'lib/docusign_rooms/api/form_groups_api.rb', line 490 def revoke_office_access_from_form_group_with_http_info(form_group_id, office_id, account_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupsApi.revoke_office_access_from_form_group ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupsApi.revoke_office_access_from_form_group" if form_group_id.nil? # verify the required parameter 'office_id' is set fail ArgumentError, "Missing the required parameter 'office_id' when calling FormGroupsApi.revoke_office_access_from_form_group" if office_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupsApi.revoke_office_access_from_form_group" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}/revoke_office_access/{officeId}".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'officeId' + '}', office_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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) if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupsApi#revoke_office_access_from_form_group\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |