Class: DocuSign_eSign::BulkEnvelopesApi
- Inherits:
-
Object
- Object
- DocuSign_eSign::BulkEnvelopesApi
- Defined in:
- lib/docusign_esign/api/bulk_envelopes_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_bulk_send_list(account_id, bulk_sending_list) ⇒ BulkSendingList
Creates a new bulk send list.
-
#create_bulk_send_list_with_http_info(account_id, bulk_sending_list) ⇒ Array<(BulkSendingList, Fixnum, Hash)>
Creates a new bulk send list.
-
#create_bulk_send_request(account_id, bulk_send_list_id, bulk_send_request) ⇒ BulkSendResponse
Uses the specified bulk send list to send the envelope specified in the payload.
-
#create_bulk_send_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) ⇒ Array<(BulkSendResponse, Fixnum, Hash)>
Uses the specified bulk send list to send the envelope specified in the payload.
-
#create_bulk_send_test_request(account_id, bulk_send_list_id, bulk_send_request) ⇒ BulkSendTestResponse
Tests whether the specified bulk sending list can be used to send an envelope.
-
#create_bulk_send_test_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) ⇒ Array<(BulkSendTestResponse, Fixnum, Hash)>
Tests whether the specified bulk sending list can be used to send an envelope.
-
#delete_bulk_send_list(account_id, bulk_send_list_id) ⇒ BulkSendingListSummaries
Deletes an existing bulk send list.
-
#delete_bulk_send_list_with_http_info(account_id, bulk_send_list_id) ⇒ Array<(BulkSendingListSummaries, Fixnum, Hash)>
Deletes an existing bulk send list.
-
#delete_recipients(account_id, envelope_id, recipient_id) ⇒ BulkRecipientsUpdateResponse
Deletes the bulk recipient file from an envelope.
-
#delete_recipients_with_http_info(account_id, envelope_id, recipient_id) ⇒ Array<(BulkRecipientsUpdateResponse, Fixnum, Hash)>
Deletes the bulk recipient file from an envelope.
-
#get(account_id, batch_id, options = DocuSign_eSign::GetOptions.default) ⇒ BulkEnvelopeStatus
Gets the status of a specified bulk send operation.
-
#get_bulk_send_list(account_id, bulk_send_list_id) ⇒ BulkSendingList
Gets a specific bulk send list.
-
#get_bulk_send_list_with_http_info(account_id, bulk_send_list_id) ⇒ Array<(BulkSendingList, Fixnum, Hash)>
Gets a specific bulk send list.
-
#get_bulk_send_lists(account_id) ⇒ BulkSendingListSummaries
Lists top-level details for all bulk send lists visible to the current user.
-
#get_bulk_send_lists_with_http_info(account_id) ⇒ Array<(BulkSendingListSummaries, Fixnum, Hash)>
Lists top-level details for all bulk send lists visible to the current user.
-
#get_recipients(account_id, envelope_id, recipient_id, options = DocuSign_eSign::GetRecipientsOptions.default) ⇒ BulkRecipientsResponse
Gets the bulk recipient file from an envelope.
-
#get_recipients_with_http_info(account_id, envelope_id, recipient_id, options = DocuSign_eSign::GetRecipientsOptions.default) ⇒ Array<(BulkRecipientsResponse, Fixnum, Hash)>
Gets the bulk recipient file from an envelope.
-
#get_with_http_info(account_id, batch_id, options = DocuSign_eSign::GetOptions.default) ⇒ Array<(BulkEnvelopeStatus, Fixnum, Hash)>
Gets the status of a specified bulk send operation.
-
#initialize(api_client = BulkEnvelopesApi.default) ⇒ BulkEnvelopesApi
constructor
A new instance of BulkEnvelopesApi.
-
#list(account_id, options = DocuSign_eSign::ListOptions.default) ⇒ BulkEnvelopesResponse
Gets status information about bulk recipient batches.
-
#list_with_http_info(account_id, options = DocuSign_eSign::ListOptions.default) ⇒ Array<(BulkEnvelopesResponse, Fixnum, Hash)>
Gets status information about bulk recipient batches.
-
#update_bulk_send_list(account_id, bulk_send_list_id, bulk_sending_list) ⇒ BulkSendingList
Updates an existing bulk send list.
-
#update_bulk_send_list_with_http_info(account_id, bulk_send_list_id, bulk_sending_list) ⇒ Array<(BulkSendingList, Fixnum, Hash)>
Updates an existing bulk send list.
-
#update_recipients(account_id, envelope_id, recipient_id, bulk_recipients_request) ⇒ BulkRecipientsSummaryResponse
Adds or replaces envelope bulk recipients.
-
#update_recipients_with_http_info(account_id, envelope_id, recipient_id, bulk_recipients_request) ⇒ Array<(BulkRecipientsSummaryResponse, Fixnum, Hash)>
Adds or replaces envelope bulk recipients.
Constructor Details
#initialize(api_client = BulkEnvelopesApi.default) ⇒ BulkEnvelopesApi
Returns a new instance of BulkEnvelopesApi.
63 64 65 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 63 def initialize(api_client = BulkEnvelopesApi.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
61 62 63 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 61 def api_client @api_client end |
Instance Method Details
#create_bulk_send_list(account_id, bulk_sending_list) ⇒ BulkSendingList
Creates a new bulk send list
72 73 74 75 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 72 def create_bulk_send_list(account_id, bulk_sending_list) data, _status_code, _headers = create_bulk_send_list_with_http_info(account_id, bulk_sending_list) return data end |
#create_bulk_send_list_with_http_info(account_id, bulk_sending_list) ⇒ Array<(BulkSendingList, Fixnum, Hash)>
Creates a new bulk send list
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 82 def create_bulk_send_list_with_http_info(account_id, bulk_sending_list) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.create_bulk_send_list ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.create_bulk_send_list" if account_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_send_lists".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(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(bulk_sending_list) 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 => 'BulkSendingList') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#create_bulk_send_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#create_bulk_send_request(account_id, bulk_send_list_id, bulk_send_request) ⇒ BulkSendResponse
Uses the specified bulk send list to send the envelope specified in the payload
124 125 126 127 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 124 def create_bulk_send_request(account_id, bulk_send_list_id, bulk_send_request) data, _status_code, _headers = create_bulk_send_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) return data end |
#create_bulk_send_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) ⇒ Array<(BulkSendResponse, Fixnum, Hash)>
Uses the specified bulk send list to send the envelope specified in the payload
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 135 def create_bulk_send_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.create_bulk_send_request ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.create_bulk_send_request" if account_id.nil? # verify the required parameter 'bulk_send_list_id' is set fail ArgumentError, "Missing the required parameter 'bulk_send_list_id' when calling BulkEnvelopesApi.create_bulk_send_request" if bulk_send_list_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_send_lists/{bulkSendListId}/send".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'bulkSendListId' + '}', bulk_send_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(bulk_send_request) 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 => 'BulkSendResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#create_bulk_send_request\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#create_bulk_send_test_request(account_id, bulk_send_list_id, bulk_send_request) ⇒ BulkSendTestResponse
Tests whether the specified bulk sending list can be used to send an envelope
179 180 181 182 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 179 def create_bulk_send_test_request(account_id, bulk_send_list_id, bulk_send_request) data, _status_code, _headers = create_bulk_send_test_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) return data end |
#create_bulk_send_test_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) ⇒ Array<(BulkSendTestResponse, Fixnum, Hash)>
Tests whether the specified bulk sending list can be used to send an envelope
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 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 190 def create_bulk_send_test_request_with_http_info(account_id, bulk_send_list_id, bulk_send_request) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.create_bulk_send_test_request ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.create_bulk_send_test_request" if account_id.nil? # verify the required parameter 'bulk_send_list_id' is set fail ArgumentError, "Missing the required parameter 'bulk_send_list_id' when calling BulkEnvelopesApi.create_bulk_send_test_request" if bulk_send_list_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_send_lists/{bulkSendListId}/test".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'bulkSendListId' + '}', bulk_send_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(bulk_send_request) 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 => 'BulkSendTestResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#create_bulk_send_test_request\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_bulk_send_list(account_id, bulk_send_list_id) ⇒ BulkSendingListSummaries
Deletes an existing bulk send list
233 234 235 236 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 233 def delete_bulk_send_list(account_id, bulk_send_list_id) data, _status_code, _headers = delete_bulk_send_list_with_http_info(account_id, bulk_send_list_id) return data end |
#delete_bulk_send_list_with_http_info(account_id, bulk_send_list_id) ⇒ Array<(BulkSendingListSummaries, Fixnum, Hash)>
Deletes an existing bulk send list
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 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 243 def delete_bulk_send_list_with_http_info(account_id, bulk_send_list_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.delete_bulk_send_list ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.delete_bulk_send_list" if account_id.nil? # verify the required parameter 'bulk_send_list_id' is set fail ArgumentError, "Missing the required parameter 'bulk_send_list_id' when calling BulkEnvelopesApi.delete_bulk_send_list" if bulk_send_list_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_send_lists/{bulkSendListId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'bulkSendListId' + '}', bulk_send_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # 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, :return_type => 'BulkSendingListSummaries') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#delete_bulk_send_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_recipients(account_id, envelope_id, recipient_id) ⇒ BulkRecipientsUpdateResponse
Deletes the bulk recipient file from an envelope. Deletes the bulk recipient file from an envelope. This cannot be used if the envelope has been sent. After using this, the ‘bulkRecipientsUri` property is not returned in subsequent GET calls for the envelope, but the recipient will remain as a bulk recipient.
287 288 289 290 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 287 def delete_recipients(account_id, envelope_id, recipient_id) data, _status_code, _headers = delete_recipients_with_http_info(account_id, envelope_id, recipient_id) return data end |
#delete_recipients_with_http_info(account_id, envelope_id, recipient_id) ⇒ Array<(BulkRecipientsUpdateResponse, Fixnum, Hash)>
Deletes the bulk recipient file from an envelope. Deletes the bulk recipient file from an envelope. This cannot be used if the envelope has been sent. After using this, the `bulkRecipientsUri` property is not returned in subsequent GET calls for the envelope, but the recipient will remain as a bulk recipient.
298 299 300 301 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 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 298 def delete_recipients_with_http_info(account_id, envelope_id, recipient_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.delete_recipients ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.delete_recipients" if account_id.nil? # verify the required parameter 'envelope_id' is set fail ArgumentError, "Missing the required parameter 'envelope_id' when calling BulkEnvelopesApi.delete_recipients" if envelope_id.nil? # verify the required parameter 'recipient_id' is set fail ArgumentError, "Missing the required parameter 'recipient_id' when calling BulkEnvelopesApi.delete_recipients" if recipient_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/bulk_recipients".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'envelopeId' + '}', envelope_id.to_s).sub('{' + 'recipientId' + '}', recipient_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # 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, :return_type => 'BulkRecipientsUpdateResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#delete_recipients\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get(account_id, batch_id, options = DocuSign_eSign::GetOptions.default) ⇒ BulkEnvelopeStatus
Gets the status of a specified bulk send operation. Retrieves the status information of a single bulk recipient batch. A bulk recipient batch is the set of envelopes sent from a single bulk recipient file.
344 345 346 347 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 344 def get(account_id, batch_id, = DocuSign_eSign::GetOptions.default) data, _status_code, _headers = get_with_http_info(account_id, batch_id, ) return data end |
#get_bulk_send_list(account_id, bulk_send_list_id) ⇒ BulkSendingList
Gets a specific bulk send list
401 402 403 404 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 401 def get_bulk_send_list(account_id, bulk_send_list_id) data, _status_code, _headers = get_bulk_send_list_with_http_info(account_id, bulk_send_list_id) return data end |
#get_bulk_send_list_with_http_info(account_id, bulk_send_list_id) ⇒ Array<(BulkSendingList, Fixnum, Hash)>
Gets a specific bulk send list
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 411 def get_bulk_send_list_with_http_info(account_id, bulk_send_list_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.get_bulk_send_list ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.get_bulk_send_list" if account_id.nil? # verify the required parameter 'bulk_send_list_id' is set fail ArgumentError, "Missing the required parameter 'bulk_send_list_id' when calling BulkEnvelopesApi.get_bulk_send_list" if bulk_send_list_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_send_lists/{bulkSendListId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'bulkSendListId' + '}', bulk_send_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # 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 => 'BulkSendingList') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#get_bulk_send_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_bulk_send_lists(account_id) ⇒ BulkSendingListSummaries
Lists top-level details for all bulk send lists visible to the current user
453 454 455 456 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 453 def get_bulk_send_lists(account_id) data, _status_code, _headers = get_bulk_send_lists_with_http_info(account_id) return data end |
#get_bulk_send_lists_with_http_info(account_id) ⇒ Array<(BulkSendingListSummaries, Fixnum, Hash)>
Lists top-level details for all bulk send lists visible to the current user
462 463 464 465 466 467 468 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 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 462 def get_bulk_send_lists_with_http_info(account_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.get_bulk_send_lists ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.get_bulk_send_lists" if account_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_send_lists".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(['application/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 => 'BulkSendingListSummaries') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#get_bulk_send_lists\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_recipients(account_id, envelope_id, recipient_id, options = DocuSign_eSign::GetRecipientsOptions.default) ⇒ BulkRecipientsResponse
Gets the bulk recipient file from an envelope. Retrieves the bulk recipient file information from an envelope that has a bulk recipient.
505 506 507 508 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 505 def get_recipients(account_id, envelope_id, recipient_id, = DocuSign_eSign::GetRecipientsOptions.default) data, _status_code, _headers = get_recipients_with_http_info(account_id, envelope_id, recipient_id, ) return data end |
#get_recipients_with_http_info(account_id, envelope_id, recipient_id, options = DocuSign_eSign::GetRecipientsOptions.default) ⇒ Array<(BulkRecipientsResponse, Fixnum, Hash)>
Gets the bulk recipient file from an envelope. Retrieves the bulk recipient file information from an envelope that has a bulk recipient.
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 517 def get_recipients_with_http_info(account_id, envelope_id, recipient_id, = DocuSign_eSign::GetRecipientsOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.get_recipients ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.get_recipients" if account_id.nil? # verify the required parameter 'envelope_id' is set fail ArgumentError, "Missing the required parameter 'envelope_id' when calling BulkEnvelopesApi.get_recipients" if envelope_id.nil? # verify the required parameter 'recipient_id' is set fail ArgumentError, "Missing the required parameter 'recipient_id' when calling BulkEnvelopesApi.get_recipients" if recipient_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/bulk_recipients".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'envelopeId' + '}', envelope_id.to_s).sub('{' + 'recipientId' + '}', recipient_id.to_s) # query parameters query_params = {} query_params[:'include_tabs'] = .include_tabs if !.include_tabs.nil? query_params[:'start_position'] = .start_position if !.start_position.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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 => 'BulkRecipientsResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#get_recipients\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_with_http_info(account_id, batch_id, options = DocuSign_eSign::GetOptions.default) ⇒ Array<(BulkEnvelopeStatus, Fixnum, Hash)>
Gets the status of a specified bulk send operation. Retrieves the status information of a single bulk recipient batch. A bulk recipient batch is the set of envelopes sent from a single bulk recipient file.
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 355 def get_with_http_info(account_id, batch_id, = DocuSign_eSign::GetOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.get ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.get" if account_id.nil? # verify the required parameter 'batch_id' is set fail ArgumentError, "Missing the required parameter 'batch_id' when calling BulkEnvelopesApi.get" if batch_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_envelopes/{batchId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'batchId' + '}', batch_id.to_s) # query parameters query_params = {} query_params[:'count'] = .count if !.count.nil? query_params[:'include'] = .include if !.include.nil? query_params[:'start_position'] = .start_position if !.start_position.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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 => 'BulkEnvelopeStatus') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list(account_id, options = DocuSign_eSign::ListOptions.default) ⇒ BulkEnvelopesResponse
Gets status information about bulk recipient batches. Retrieves status information about all the bulk recipient batches. A bulk recipient batch is the set of envelopes sent from a single bulk recipient file. The response includes general information about each bulk recipient batch. The response returns information about the envelopes sent with bulk recipient batches, including the ‘batchId` property, which can be used to retrieve a more detailed status of individual bulk recipient batches.
564 565 566 567 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 564 def list(account_id, = DocuSign_eSign::ListOptions.default) data, _status_code, _headers = list_with_http_info(account_id, ) return data end |
#list_with_http_info(account_id, options = DocuSign_eSign::ListOptions.default) ⇒ Array<(BulkEnvelopesResponse, Fixnum, Hash)>
Gets status information about bulk recipient batches. Retrieves status information about all the bulk recipient batches. A bulk recipient batch is the set of envelopes sent from a single bulk recipient file. The response includes general information about each bulk recipient batch. The response returns information about the envelopes sent with bulk recipient batches, including the `batchId` property, which can be used to retrieve a more detailed status of individual bulk recipient batches.
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 574 def list_with_http_info(account_id, = DocuSign_eSign::ListOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.list ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.list" if account_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_envelopes".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} query_params[:'count'] = .count if !.count.nil? query_params[:'include'] = .include if !.include.nil? query_params[:'start_position'] = .start_position if !.start_position.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/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 => 'BulkEnvelopesResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_bulk_send_list(account_id, bulk_send_list_id, bulk_sending_list) ⇒ BulkSendingList
Updates an existing bulk send list. If send_envelope query string value is provided, will accept an empty payload and try to send the specified envelope
619 620 621 622 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 619 def update_bulk_send_list(account_id, bulk_send_list_id, bulk_sending_list) data, _status_code, _headers = update_bulk_send_list_with_http_info(account_id, bulk_send_list_id, bulk_sending_list) return data end |
#update_bulk_send_list_with_http_info(account_id, bulk_send_list_id, bulk_sending_list) ⇒ Array<(BulkSendingList, Fixnum, Hash)>
Updates an existing bulk send list. If send_envelope query string value is provided, will accept an empty payload and try to send the specified envelope
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 657 658 659 660 661 662 663 664 665 666 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 630 def update_bulk_send_list_with_http_info(account_id, bulk_send_list_id, bulk_sending_list) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.update_bulk_send_list ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.update_bulk_send_list" if account_id.nil? # verify the required parameter 'bulk_send_list_id' is set fail ArgumentError, "Missing the required parameter 'bulk_send_list_id' when calling BulkEnvelopesApi.update_bulk_send_list" if bulk_send_list_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/bulk_send_lists/{bulkSendListId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'bulkSendListId' + '}', bulk_send_list_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(bulk_sending_list) 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 => 'BulkSendingList') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#update_bulk_send_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_recipients(account_id, envelope_id, recipient_id, bulk_recipients_request) ⇒ BulkRecipientsSummaryResponse
Adds or replaces envelope bulk recipients. Updates the bulk recipients in a draft envelope using a file upload. The Content-Type supported for uploading a bulk recipient file is CSV (text/csv). The REST API does not support modifying individual rows or values in the bulk recipients file. It only allows the entire file to be added or replaced with a new file.
675 676 677 678 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 675 def update_recipients(account_id, envelope_id, recipient_id, bulk_recipients_request) data, _status_code, _headers = update_recipients_with_http_info(account_id, envelope_id, recipient_id, bulk_recipients_request) return data end |
#update_recipients_with_http_info(account_id, envelope_id, recipient_id, bulk_recipients_request) ⇒ Array<(BulkRecipientsSummaryResponse, Fixnum, Hash)>
Adds or replaces envelope bulk recipients. Updates the bulk recipients in a draft envelope using a file upload. The Content-Type supported for uploading a bulk recipient file is CSV (text/csv). The REST API does not support modifying individual rows or values in the bulk recipients file. It only allows the entire file to be added or replaced with a new file.
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 727 728 729 |
# File 'lib/docusign_esign/api/bulk_envelopes_api.rb', line 687 def update_recipients_with_http_info(account_id, envelope_id, recipient_id, bulk_recipients_request) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: BulkEnvelopesApi.update_recipients ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling BulkEnvelopesApi.update_recipients" if account_id.nil? # verify the required parameter 'envelope_id' is set fail ArgumentError, "Missing the required parameter 'envelope_id' when calling BulkEnvelopesApi.update_recipients" if envelope_id.nil? # verify the required parameter 'recipient_id' is set fail ArgumentError, "Missing the required parameter 'recipient_id' when calling BulkEnvelopesApi.update_recipients" if recipient_id.nil? # verify the required parameter 'bulk_recipients_request' is set fail ArgumentError, "Missing the required parameter 'bulk_recipients_request' when calling BulkEnvelopesApi.update_recipients" if bulk_recipients_request.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/recipients/{recipientId}/bulk_recipients".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'envelopeId' + '}', envelope_id.to_s).sub('{' + 'recipientId' + '}', recipient_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['text/csv']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(bulk_recipients_request) 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 => 'BulkRecipientsSummaryResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: BulkEnvelopesApi#update_recipients\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |