Dropbox Sign
Connect to your users' Dropbox Sign accounts
You'll need the following information to set up your Dropbox Sign App with Paragon Connect:
- API Key
This is an API-only integration - workflow actions for this integration are still in development. You can still connect user accounts, build workflows, and access the API for this integration.
Once your users have connected their Dropbox Sign account, you can use the Paragon SDK to access the Dropbox Sign API on behalf of connected users.
Any Dropbox Sign API endpoints can be accessed with the Paragon SDK as shown in this example.
// You can find your project ID in the Overview tab of any Integration
// Authenticate the user
paragon.authenticate(<ProjectId>, <UserToken>);
// Create Embedded Signature Request
await paragon.request('dropboxsign', 'signature_request/create_embedded', {
method: 'POST'
body: {
"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": [
{
"email_address": "[email protected]",
"name": "Jack",
"order": 0
},
],
"cc_email_addresses": [
],
"file_urls": [
"https://www.dropbox.com/s/ad9qnhbrjjn64tu/mutual-NDA-example.pdf?dl=1"
],
"metadata": {
"custom_id": 1234,
"custom_text": "NDA #9"
},
"signing_options": {
"draw": true,
"type": true,
"upload": true,
"phone": false,
"default_type": "draw"
},
"field_options": {
"date_format": "DD - MM - YYYY"
},
"test_mode": true
}
});
// Get the status of a Signature Request
await paragon.request("dropboxsign", "signature_request/<signature_request_id>", {
method: "GET",
});
Once your Dropbox Sign account is connected, you use the Dropbox Sign Request step to access any of Dropbox Sign's API endpoints without the authentication piece.
When creating or updating records in Dropbox Sign, you can reference data from previous steps by typing
{{
to invoke the variable menu.Last modified 1mo ago