All URIs are relative to https://api.hellosign.com/v3.
Method | HTTP request | Description |
---|---|---|
signatureRequestBulkCreateEmbeddedWithTemplate() | POST /signature_request/bulk_create_embedded_with_template | Embedded Bulk Send with Template |
signatureRequestBulkSendWithTemplate() | POST /signature_request/bulk_send_with_template | Bulk Send with Template |
signatureRequestCancel() | POST /signature_request/cancel/{signature_request_id} | Cancel Incomplete Signature Request |
signatureRequestCreateEmbedded() | POST /signature_request/create_embedded | Create Embedded Signature Request |
signatureRequestCreateEmbeddedWithTemplate() | POST /signature_request/create_embedded_with_template | Create Embedded Signature Request with Template |
signatureRequestFiles() | GET /signature_request/files/{signature_request_id} | Download Files |
signatureRequestFilesAsDataUri() | GET /signature_request/files_as_data_uri/{signature_request_id} | Download Files as Data Uri |
signatureRequestFilesAsFileUrl() | GET /signature_request/files_as_file_url/{signature_request_id} | Download Files as File Url |
signatureRequestGet() | GET /signature_request/{signature_request_id} | Get Signature Request |
signatureRequestList() | GET /signature_request/list | List Signature Requests |
signatureRequestReleaseHold() | POST /signature_request/release_hold/{signature_request_id} | Release On-Hold Signature Request |
signatureRequestRemind() | POST /signature_request/remind/{signature_request_id} | Send Request Reminder |
signatureRequestRemove() | POST /signature_request/remove/{signature_request_id} | Remove Signature Request Access |
signatureRequestSend() | POST /signature_request/send | Send Signature Request |
signatureRequestSendWithTemplate() | POST /signature_request/send_with_template | Send with Template |
signatureRequestUpdate() | POST /signature_request/update/{signature_request_id} | Update Signature Request |
signatureRequestBulkCreateEmbeddedWithTemplate(signatureRequestBulkCreateEmbeddedWithTemplateRequest: SignatureRequestBulkCreateEmbeddedWithTemplateRequest): BulkSendJobSendResponse
Embedded Bulk Send with Template
Creates BulkSendJob which sends up to 250 SignatureRequests in bulk based off of the provided Template(s) specified with the template_ids
parameter to be signed in an embedded iFrame. These embedded signature requests can only be signed in embedded iFrames whereas normal signature requests can only be signed on Dropbox Sign. NOTE: Only available for Standard plan and higher.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
const signerList1Signer: DropboxSign.SubSignatureRequestTemplateSigner = {
role: "Client",
name: "George",
emailAddress: "george@example.com",
pin: "d79a3td",
};
const signerList1CustomFields: DropboxSign.SubBulkSignerListCustomField = {
name: "company",
value: "ABC Corp",
};
const signerList1: DropboxSign.SubBulkSignerList = {
signers: [ signerList1Signer ],
customFields: [ signerList1CustomFields ],
};
const signerList2Signer: DropboxSign.SubSignatureRequestTemplateSigner = {
role: "Client",
name: "Mary",
emailAddress: "mary@example.com",
pin: "gd9as5b",
};
const signerList2CustomFields: DropboxSign.SubBulkSignerListCustomField = {
name: "company",
value: "123 LLC",
};
const signerList2: DropboxSign.SubBulkSignerList = {
signers: [ signerList2Signer ],
customFields: [ signerList2CustomFields ],
};
const cc1: DropboxSign.SubCC = {
role: "Accounting",
emailAddress: "accounting@example.com",
};
const data: DropboxSign.SignatureRequestBulkCreateEmbeddedWithTemplateRequest = {
clientId: "1a659d9ad95bccd307ecad78d72192f8",
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signerList: [ signerList1, signerList2 ],
ccs: [ cc1 ],
testMode: true,
};
const result = signatureRequestApi.signatureRequestBulkCreateEmbeddedWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signerList1Signer = {
role: "Client",
name: "George",
emailAddress: "george@example.com",
pin: "d79a3td",
};
const signerList1CustomFields = {
name: "company",
value: "ABC Corp",
};
const signerList1 = {
signers: [ signerList1Signer ],
customFields: [ signerList1CustomFields ],
};
const signerList2Signer = {
role: "Client",
name: "Mary",
emailAddress: "mary@example.com",
pin: "gd9as5b",
};
const signerList2CustomFields = {
name: "company",
value: "123 LLC",
};
const signerList2 = {
signers: [ signerList2Signer ],
customFields: [ signerList2CustomFields ],
};
const cc1 = {
role: "Accounting",
emailAddress: "accounting@example.com",
};
const data = {
clientId: "1a659d9ad95bccd307ecad78d72192f8",
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signerList: [ signerList1, signerList2 ],
ccs: [ cc1 ],
testMode: true,
};
const result = signatureRequestApi.signatureRequestBulkCreateEmbeddedWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestBulkCreateEmbeddedWithTemplateRequest | SignatureRequestBulkCreateEmbeddedWithTemplateRequest |
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestBulkSendWithTemplate(signatureRequestBulkSendWithTemplateRequest: SignatureRequestBulkSendWithTemplateRequest): BulkSendJobSendResponse
Bulk Send with Template
Creates BulkSendJob which sends up to 250 SignatureRequests in bulk based off of the provided Template(s) specified with the template_ids
parameter. NOTE: Only available for Standard plan and higher.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signerList1Signer: DropboxSign.SubSignatureRequestTemplateSigner = {
role: "Client",
name: "George",
emailAddress: "george@example.com",
pin: "d79a3td",
};
const signerList1CustomFields: DropboxSign.SubBulkSignerListCustomField = {
name: "company",
value: "ABC Corp",
};
const signerList1: DropboxSign.SubBulkSignerList = {
signers: [ signerList1Signer ],
customFields: [ signerList1CustomFields ],
};
const signerList2Signer: DropboxSign.SubSignatureRequestTemplateSigner = {
role: "Client",
name: "Mary",
emailAddress: "mary@example.com",
pin: "gd9as5b",
};
const signerList2CustomFields: DropboxSign.SubBulkSignerListCustomField = {
name: "company",
value: "123 LLC",
};
const signerList2: DropboxSign.SubBulkSignerList = {
signers: [ signerList2Signer ],
customFields: [ signerList2CustomFields ],
};
const cc1: DropboxSign.SubCC = {
role: "Accounting",
emailAddress: "accounting@example.com",
};
const data: DropboxSign.SignatureRequestBulkSendWithTemplateRequest = {
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signerList: [ signerList1, signerList2 ],
ccs: [ cc1 ],
testMode: true,
};
const result = signatureRequestApi.signatureRequestBulkSendWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signerList1Signer = {
role: "Client",
name: "George",
emailAddress: "george@example.com",
pin: "d79a3td",
};
const signerList1CustomFields = {
name: "company",
value: "ABC Corp",
};
const signerList1 = {
signers: [ signerList1Signer ],
customFields: [ signerList1CustomFields ],
};
const signerList2Signer = {
role: "Client",
name: "Mary",
emailAddress: "mary@example.com",
pin: "gd9as5b",
};
const signerList2CustomFields = {
name: "company",
value: "123 LLC",
};
const signerList2 = {
signers: [ signerList2Signer ],
customFields: [ signerList2CustomFields ],
};
const cc1 = {
role: "Accounting",
emailAddress: "accounting@example.com",
};
const data = {
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signerList: [ signerList1, signerList2 ],
ccs: [ cc1 ],
testMode: true,
};
const result = signatureRequestApi.signatureRequestBulkSendWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestBulkSendWithTemplateRequest | SignatureRequestBulkSendWithTemplateRequest |
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestCancel(signatureRequestId: string)
Cancel Incomplete Signature Request
Cancels an incomplete signature request. This action is not reversible. The request will be canceled and signers will no longer be able to sign. If they try to access the signature request they will receive a HTTP 410 status code indicating that the resource has been deleted. Cancelation is asynchronous and a successful call to this endpoint will return an empty 200 OK response if the signature request is eligible to be canceled and has been successfully queued. This 200 OK response does not indicate a successful cancelation of the signature request itself. The cancelation is confirmed via the signature_request_canceled
event. It is recommended that a callback handler be implemented to listen for the signature_request_canceled
event. This callback will be sent only when the cancelation has completed successfully. If a callback handler has been configured and the event has not been received within 60 minutes of making the call, check the status of the request in the API Dashboard and retry the cancelation if necessary. To be eligible for cancelation, a signature request must have been sent successfully, must not yet have been signed by all signers, and you must either be the sender or own the API app under which it was sent. A partially signed signature request can be canceled. NOTE: To remove your access to a completed signature request, use the endpoint: POST /signature_request/remove/[:signature_request_id]
.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestCancel(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestCancel(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the incomplete SignatureRequest to cancel. |
void (empty response body)
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestCreateEmbedded(signatureRequestCreateEmbeddedRequest: SignatureRequestCreateEmbeddedRequest): SignatureRequestGetResponse
Create Embedded Signature Request
Creates a new SignatureRequest with the submitted documents to be signed in an embedded iFrame. If form_fields_per_document is not specified, a signature page will be affixed where all signers will be required to add their signature, signifying their agreement to all contained documents. Note that embedded signature requests can only be signed in embedded iFrames whereas normal signature requests can only be signed on Dropbox Sign.
import * as DropboxSign from "@dropbox/sign";
import * as fs from 'fs';
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1: DropboxSign.SubSignatureRequestSigner = {
emailAddress: "jack@example.com",
name: "Jack",
order: 0,
};
const signer2: DropboxSign.SubSignatureRequestSigner = {
emailAddress: "jill@example.com",
name: "Jill",
order: 1,
};
const signingOptions: DropboxSign.SubSigningOptions = {
draw: true,
type: true,
upload: true,
phone: true,
defaultType: DropboxSign.SubSigningOptions.DefaultTypeEnum.Draw,
};
const data: DropboxSign.SignatureRequestCreateEmbeddedRequest = {
clientId: "ec64a202072370a737edf4a0eb7f4437",
title: "NDA with Acme Co.",
subject: "The NDA we talked about",
message: "Please sign this NDA and then we can discuss more. Let me know if you have any questions.",
signers: [ signer1, signer2 ],
ccEmailAddresses: [
"lawyer1@dropboxsign.com",
"lawyer2@dropboxsign.com",
],
files: [fs.createReadStream("example_signature_request.pdf")],
signingOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestCreateEmbedded(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
import * as fs from 'fs';
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1 = {
emailAddress: "jack@example.com",
name: "Jack",
order: 0,
};
const signer2 = {
emailAddress: "jill@example.com",
name: "Jill",
order: 1,
};
const signingOptions = {
draw: true,
type: true,
upload: true,
phone: true,
defaultType: "draw",
};
const data = {
clientId: "ec64a202072370a737edf4a0eb7f4437",
title: "NDA with Acme Co.",
subject: "The NDA we talked about",
message: "Please sign this NDA and then we can discuss more. Let me know if you have any questions.",
signers: [ signer1, signer2 ],
ccEmailAddresses: [
"lawyer1@dropboxsign.com",
"lawyer2@example.com",
],
files: [fs.createReadStream("example_signature_request.pdf")],
signingOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestCreateEmbedded(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestCreateEmbeddedRequest | SignatureRequestCreateEmbeddedRequest |
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestCreateEmbeddedWithTemplate(signatureRequestCreateEmbeddedWithTemplateRequest: SignatureRequestCreateEmbeddedWithTemplateRequest): SignatureRequestGetResponse
Create Embedded Signature Request with Template
Creates a new SignatureRequest based on the given Template(s) to be signed in an embedded iFrame. Note that embedded signature requests can only be signed in embedded iFrames whereas normal signature requests can only be signed on Dropbox Sign.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1: DropboxSign.SubSignatureRequestTemplateSigner = {
role: "Client",
emailAddress: "george@example.com",
name: "George",
};
const signingOptions: DropboxSign.SubSigningOptions = {
draw: true,
type: true,
upload: true,
phone: false,
defaultType: DropboxSign.SubSigningOptions.DefaultTypeEnum.Draw,
};
const data: DropboxSign.SignatureRequestCreateEmbeddedWithTemplateRequest = {
clientId: "ec64a202072370a737edf4a0eb7f4437",
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signers: [ signer1 ],
signingOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestCreateEmbeddedWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1 = {
role: "Client",
emailAddress: "george@example.com",
name: "George",
};
const signingOptions = {
draw: true,
type: true,
upload: true,
phone: false,
defaultType: "draw",
};
const data = {
clientId: "ec64a202072370a737edf4a0eb7f4437",
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signers: [ signer1 ],
signingOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestCreateEmbeddedWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestCreateEmbeddedWithTemplateRequest | SignatureRequestCreateEmbeddedWithTemplateRequest |
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestFiles(signatureRequestId: string, fileType: 'pdf' | 'zip'): Buffer
Download Files
Obtain a copy of the current documents specified by the signature_request_id
parameter. Returns a PDF or ZIP file. If the files are currently being prepared, a status code of 409
will be returned instead.
import * as DropboxSign from "@dropbox/sign";
import * as fs from 'fs';
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const fileType = "pdf";
const result = signatureRequestApi.signatureRequestFiles(signatureRequestId, fileType);
result.then(response => {
fs.createWriteStream('file_response.pdf').write(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
import * as fs from 'fs';
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const fileType = "pdf";
const result = signatureRequestApi.signatureRequestFiles(signatureRequestId, fileType);
result.then(response => {
fs.createWriteStream('file_response.pdf').write(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to retrieve. | |
fileType | **'pdf' | 'zip'** | Set to pdf for a single merged document or zip for a collection of individual documents. |
Buffer
- Content-Type: Not defined
- Accept:
application/pdf
,application/zip
,application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestFilesAsDataUri(signatureRequestId: string): FileResponseDataUri
Download Files as Data Uri
Obtain a copy of the current documents specified by the signature_request_id
parameter. Returns a JSON object with a data_uri
representing the base64 encoded file (PDFs only). If the files are currently being prepared, a status code of 409
will be returned instead.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const result = signatureRequestApi.signatureRequestFilesAsDataUri(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const result = signatureRequestApi.signatureRequestFilesAsDataUri(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to retrieve. |
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestFilesAsFileUrl(signatureRequestId: string, forceDownload: number): FileResponse
Download Files as File Url
Obtain a copy of the current documents specified by the signature_request_id
parameter. Returns a JSON object with a url to the file (PDFs only). If the files are currently being prepared, a status code of 409
will be returned instead.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const result = signatureRequestApi.signatureRequestFilesAsFileUrl(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const result = signatureRequestApi.signatureRequestFilesAsFileUrl(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to retrieve. | |
forceDownload | number | By default when opening the file_url a browser will download the PDF and save it locally. When set to 0 the PDF file will be displayed in the browser. |
[optional] [default to 1] |
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestGet(signatureRequestId: string): SignatureRequestGetResponse
Get Signature Request
Returns the status of the SignatureRequest specified by the signature_request_id
parameter.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const result = signatureRequestApi.signatureRequestGet(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "fa5c8a0b0f492d768749333ad6fcc214c111e967";
const result = signatureRequestApi.signatureRequestGet(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to retrieve. |
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestList(accountId: string, page: number, pageSize: number, query: string): SignatureRequestListResponse
List Signature Requests
Returns a list of SignatureRequests that you can access. This includes SignatureRequests you have sent as well as received, but not ones that you have been CCed on. Take a look at our search guide to learn more about querying signature requests.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const accountId = null;
const page = 1;
const result = signatureRequestApi.signatureRequestList(accountId, page);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const accountId = null;
const page = 1;
const result = signatureRequestApi.signatureRequestList(accountId, page);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
accountId | string | Which account to return SignatureRequests for. Must be a team member. Use all to indicate all team members. Defaults to your account. |
[optional] |
page | number | Which page number of the SignatureRequest List to return. Defaults to 1 . |
[optional] [default to 1] |
pageSize | number | Number of objects to be returned per page. Must be between 1 and 100 . Default is 20 . |
[optional] [default to 20] |
query | string | String that includes search terms and/or fields to be used to filter the SignatureRequest objects. | [optional] |
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestReleaseHold(signatureRequestId: string): SignatureRequestGetResponse
Release On-Hold Signature Request
Releases a held SignatureRequest that was claimed and prepared from an UnclaimedDraft. The owner of the Draft must indicate at Draft creation that the SignatureRequest created from the Draft should be held. Releasing the SignatureRequest will send requests to all signers.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestReleaseHold(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestReleaseHold(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to release. |
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestRemind(signatureRequestId: string, signatureRequestRemindRequest: SignatureRequestRemindRequest): SignatureRequestGetResponse
Send Request Reminder
Sends an email to the signer reminding them to sign the signature request. You cannot send a reminder within 1 hour of the last reminder that was sent. This includes manual AND automatic reminders. NOTE: This action can not be used with embedded signature requests.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const data: DropboxSign.SignatureRequestRemindRequest = {
emailAddress: "john@example.com",
};
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestRemind(signatureRequestId, data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const data = {
emailAddress: "john@example.com",
};
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestRemind(signatureRequestId, data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to send a reminder for. | |
signatureRequestRemindRequest | SignatureRequestRemindRequest |
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestRemove(signatureRequestId: string)
Remove Signature Request Access
Removes your access to a completed signature request. This action is not reversible. The signature request must be fully executed by all parties (signed or declined to sign). Other parties will continue to maintain access to the completed signature request document(s). Unlike /signature_request/cancel, this endpoint is synchronous and your access will be immediately removed. Upon successful removal, this endpoint will return a 200 OK response.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestRemove(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestRemove(signatureRequestId);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to remove. |
void (empty response body)
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestSend(signatureRequestSendRequest: SignatureRequestSendRequest): SignatureRequestGetResponse
Send Signature Request
Creates and sends a new SignatureRequest with the submitted documents. If form_fields_per_document
is not specified, a signature page will be affixed where all signers will be required to add their signature, signifying their agreement to all contained documents.
import * as DropboxSign from "@dropbox/sign";
import * as fs from 'fs';
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1: DropboxSign.SubSignatureRequestSigner = {
emailAddress: "jack@example.com",
name: "Jack",
order: 0,
};
const signer2: DropboxSign.SubSignatureRequestSigner = {
emailAddress: "jill@example.com",
name: "Jill",
order: 1,
};
const signingOptions: DropboxSign.SubSigningOptions = {
draw: true,
type: true,
upload: true,
phone: false,
defaultType: DropboxSign.SubSigningOptions.DefaultTypeEnum.Draw,
};
const fieldOptions: DropboxSign.SubFieldOptions = {
dateFormat: DropboxSign.SubFieldOptions.DateFormatEnum.DD_MM_YYYY,
};
// Upload a local file
const file = fs.createReadStream("example_signature_request.pdf");
// or, upload from buffer
const fileBuffer: DropboxSign.RequestDetailedFile = {
value: fs.readFileSync("example_signature_request.pdf"),
options: {
filename: "example_signature_request.pdf",
contentType: "application/pdf",
},
};
// or, upload from buffer alternative
const fileBufferAlt: DropboxSign.RequestDetailedFile = {
value: Buffer.from("abc-123"),
options: {
filename: "txt-sample.txt",
contentType: "text/plain",
},
};
const data: DropboxSign.SignatureRequestSendRequest = {
title: "NDA with Acme Co.",
subject: "The NDA we talked about",
message: "Please sign this NDA and then we can discuss more. Let me know if you have any questions.",
signers: [ signer1, signer2 ],
ccEmailAddresses: [
"lawyer1@dropboxsign.com",
"lawyer2@dropboxsign.com",
],
files: [ file, fileBuffer, fileBufferAlt ],
metadata: {
"custom_id": 1234,
"custom_text": "NDA #9",
},
signingOptions,
fieldOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestSend(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
import * as fs from 'fs';
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1 = {
emailAddress: "jack@example.com",
name: "Jack",
order: 0,
};
const signer2 = {
emailAddress: "jill@example.com",
name: "Jill",
order: 1,
};
const signingOptions = {
draw: true,
type: true,
upload: true,
phone: false,
defaultType: "draw",
};
const fieldOptions = {
dateFormat: "DD - MM - YYYY",
};
// Upload a local file
const file = fs.createReadStream("example_signature_request.pdf");
// or, upload from buffer
const fileBuffer = {
value: fs.readFileSync("example_signature_request.pdf"),
options: {
filename: "example_signature_request.pdf",
contentType: "application/pdf",
},
};
// or, upload from buffer alternative
const fileBufferAlt = {
value: Buffer.from("abc-123"),
options: {
filename: "txt-sample.txt",
contentType: "text/plain",
},
};
const data = {
title: "NDA with Acme Co.",
subject: "The NDA we talked about",
message: "Please sign this NDA and then we can discuss more. Let me know if you have any questions.",
signers: [ signer1, signer2 ],
ccEmailAddresses: [
"lawyer1@dropboxsign.com",
"lawyer2@example.com",
],
files: [ file, fileBuffer, fileBufferAlt ],
metadata: {
"custom_id": 1234,
"custom_text": "NDA #9",
},
signingOptions,
fieldOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestSend(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestSendRequest | SignatureRequestSendRequest |
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestSendWithTemplate(signatureRequestSendWithTemplateRequest: SignatureRequestSendWithTemplateRequest): SignatureRequestGetResponse
Send with Template
Creates and sends a new SignatureRequest based off of the Template(s) specified with the template_ids
parameter.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1: DropboxSign.SubSignatureRequestTemplateSigner = {
role: "Client",
emailAddress: "george@example.com",
name: "George",
};
const cc1: DropboxSign.SubCC = {
role: "Accounting",
emailAddress: "accounting@example.com",
};
const customField1: DropboxSign.SubCustomField = {
name: "Cost",
value: "$20,000",
editor: "Client",
required: true,
};
const signingOptions: DropboxSign.SubSigningOptions = {
draw: true,
type: true,
upload: true,
phone: false,
defaultType: DropboxSign.SubSigningOptions.DefaultTypeEnum.Draw,
};
const data: DropboxSign.SignatureRequestSendWithTemplateRequest = {
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signers: [ signer1 ],
ccs: [ cc1 ],
customFields: [ customField1 ],
signingOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestSendWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const signer1 = {
role: "Client",
emailAddress: "george@example.com",
name: "George",
};
const cc1 = {
role: "Accounting",
emailAddress: "accounting@example.com",
};
const customField1 = {
name: "Cost",
value: "$20,000",
editor: "Client",
required: true,
};
const signingOptions = {
draw: true,
type: true,
upload: true,
phone: false,
defaultType: "draw",
};
const data = {
templateIds: ["c26b8a16784a872da37ea946b9ddec7c1e11dff6"],
subject: "Purchase Order",
message: "Glad we could come to an agreement.",
signers: [ signer1 ],
ccs: [ cc1 ],
customFields: [ customField1 ],
signingOptions,
testMode: true,
};
const result = signatureRequestApi.signatureRequestSendWithTemplate(data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestSendWithTemplateRequest | SignatureRequestSendWithTemplateRequest |
- Content-Type:
application/json
,multipart/form-data
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signatureRequestUpdate(signatureRequestId: string, signatureRequestUpdateRequest: SignatureRequestUpdateRequest): SignatureRequestGetResponse
Update Signature Request
Updates the email address and/or the name for a given signer on a signature request. You can listen for the signature_request_email_bounce
event on your app or account to detect bounced emails, and respond with this method. Updating the email address of a signer will generate a new signature_id
value. NOTE: This action cannot be performed on a signature request with an appended signature page.
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const data: DropboxSign.SignatureRequestUpdateRequest = {
emailAddress: "john@example.com",
signatureId: "78caf2a1d01cd39cea2bc1cbb340dac3",
};
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestUpdate(signatureRequestId, data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
import * as DropboxSign from "@dropbox/sign";
const signatureRequestApi = new DropboxSign.SignatureRequestApi();
// Configure HTTP basic authorization: api_key
signatureRequestApi.username = "YOUR_API_KEY";
// or, configure Bearer (JWT) authorization: oauth2
// signatureRequestApi.accessToken = "YOUR_ACCESS_TOKEN";
const data = {
emailAddress: "john@example.com",
signatureId: "78caf2a1d01cd39cea2bc1cbb340dac3",
};
const signatureRequestId = "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f";
const result = signatureRequestApi.signatureRequestUpdate(signatureRequestId, data);
result.then(response => {
console.log(response.body);
}).catch(error => {
console.log("Exception when calling Dropbox Sign API:");
console.log(error.body);
});
Name | Type | Description | Notes |
---|---|---|---|
signatureRequestId | string | The id of the SignatureRequest to update. | |
signatureRequestUpdateRequest | SignatureRequestUpdateRequest |
- Content-Type:
application/json
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]