Get Bulk Send Job

get/bulk_send_job/{bulk_send_job_id}

Returns the status of the BulkSendJob and its SignatureRequests specified by the bulk_send_job_id parameter.

Securityapi_key or oauth2
Request
path Parameters
bulk_send_job_id
required
string

The id of the BulkSendJob to retrieve.

Example: 6e683bc0369ba3d5b6f43c2c22a8031dbf6bd174
query Parameters
page
integer
Default: 1

Which page number of the BulkSendJob list to return. Defaults to 1.

page_size
integer
Default: 20

Number of objects to be returned per page. Must be between 1 and 100. Default is 20.

Responses
200

successful operation

4XX

failed_operation

Request samples
<?php

namespace Dropbox\SignSandbox;

require_once __DIR__ . '/../vendor/autoload.php';

use SplFileObject;
use Dropbox;

$config = Dropbox\Sign\Configuration::getDefaultConfiguration();
$config->setUsername("YOUR_API_KEY");
// $config->setAccessToken("YOUR_ACCESS_TOKEN");

try {
    $response = (new Dropbox\Sign\Api\BulkSendJobApi(config: $config))->bulkSendJobGet(
        bulk_send_job_id: "6e683bc0369ba3d5b6f43c2c22a8031dbf6bd174",
        page: 1,
        page_size: 20,
    );

    print_r($response);
} catch (Dropbox\Sign\ApiException $e) {
    echo "Exception when calling BulkSendJobApi#bulkSendJobGet: {$e->getMessage()}";
}
Response samples
application/json
{
  • "bulk_send_job": {
    },
  • "list_info": {
    },
  • "signature_requests": [
    ]
}