docs/BulkSendJobApi.md in dropbox-sign-1.0.1 vs docs/BulkSendJobApi.md in dropbox-sign-1.1.0
- old
+ new
@@ -8,11 +8,11 @@
| [`bulk_send_job_list`](BulkSendJobApi.md#bulk_send_job_list) | **GET** `/bulk_send_job/list` | List Bulk Send Jobs |
## `bulk_send_job_get`
-> `<BulkSendJobGetResponse> bulk_send_job_get(bulk_send_job_id)`
+> `<BulkSendJobGetResponse> bulk_send_job_get(bulk_send_job_id, opts)`
Get Bulk Send Job
Returns the status of the BulkSendJob and its SignatureRequests specified by the `bulk_send_job_id` parameter.
@@ -44,16 +44,16 @@
#### Using the `bulk_send_job_get_with_http_info` variant
This returns an Array which contains the response data, status code and headers.
-> `<Array(<BulkSendJobGetResponse>, Integer, Hash)> bulk_send_job_get_with_http_info(bulk_send_job_id)`
+> `<Array(<BulkSendJobGetResponse>, Integer, Hash)> bulk_send_job_get_with_http_info(bulk_send_job_id, opts)`
```ruby
begin
# Get Bulk Send Job
- data, status_code, headers = api_instance.bulk_send_job_get_with_http_info(bulk_send_job_id)
+ data, status_code, headers = api_instance.bulk_send_job_get_with_http_info(bulk_send_job_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <BulkSendJobGetResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling BulkSendJobApi->bulk_send_job_get_with_http_info: #{e}"
@@ -63,9 +63,11 @@
### Parameters
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| `bulk_send_job_id` | **String** | The id of the BulkSendJob to retrieve. | |
+| `page` | **Integer** | Which page number of the BulkSendJob list to return. Defaults to `1`. | [optional][default to 1] |
+| `page_size` | **Integer** | Number of objects to be returned per page. Must be between `1` and `100`. Default is 20. | [optional][default to 20] |
### Return type
[**BulkSendJobGetResponse**](BulkSendJobGetResponse.md)