메인 콘텐츠로 건너뛰기
항목을 찾을 수 없습니다.
dropboxsign 로고
Dropbox Sign을 사용해야 하는 이유
아코디언 메뉴 펼치기/접기

포함된 기능

온라인에서 문서 서명
전자 서명 만들기
템플릿 선택 또는 생성
PDF를 작성하고 서명하기
온라인 계약 체결하기
문서 관리
기능 살펴보기
오른쪽 방향 화살표 아이콘

이용 사례

영업 및 비즈니스 개발
인사
스타트업
재무 기술
부동산
온디맨드 서비스
제품
아코디언 메뉴 펼치기/접기
Dropbox 아이콘
Sign
간편한 문서 전송과 서명
Dropbox 아이콘
Sign API
워크플로에 전자 서명 통합
dropbox fax 아이콘
Fax
팩스 없는 팩스 전송
dropbox 통합 아이콘
연동
여러분이 일하는 곳이라면 어디서든 구현 가능한 Dropbox Sign
관련 자료
아코디언 메뉴 펼치기/접기
블로그
워크플로 전문 지식과 제품 소식
고객 이용 후기
실제 성과를 엿볼 수 있는 실제 스토리
도움말 센터
Dropbox Sign 제품 심층 설명
자료 라이브러리
보고서, 동영상, 정보 안내서
개발자
요금
아코디언 메뉴 펼치기/접기
Dropbox Sign 요금제
가장 적합한 요금제 찾기
Dropbox Sign API 요금제
실제 성과를 엿볼 수 있는 실제 스토리
영업팀에 문의
가입
영업팀에 문의
로그인
아코디언 메뉴 펼치기/접기
Dropbox Sign
Dropbox Forms
Dropbox Fax
무료 평가판
블로그
/
개발자

Dropbox Sign vs. SignNow for developers

by 
Aniket Bhattacharyea
January 31, 2025
15개
분 소요
Illustration of a handwritten signature in cursive style, symbolizing eSignature technology.
툴팁 아이콘

새로운 이름, 변함없이 강력한 성능! HelloSign이 Dropbox Sign으로 새롭게 탄생했습니다.

닫기 아이콘

eSignature tools offer a secure and efficient option for signing contracts, agreements, and other important documents. The built-in security features, including encryption, audit trails, and identity verification, provide the technical foundation for eSignatures to meet legal requirements, enabling them to serve as a compliant alternative to wet signatures for legally binding documents. 

There are a number of eSignature tools to choose from, including Dropbox Sign and SignNow. These tools are widely adopted due to their intuitive user interfaces, robust integration capabilities, and strong security features. This article provides a detailed comparison of the two, covering their features, usability, pricing, documentation, integration options, and support for APIs and SDKs.

특징

When it comes to eSignature functionality, both Dropbox Sign and SignNow offer a similar set of features:

  • Upload and send a document to one or multiple signers.
  • Customize where or how the document can be signed using an interactive designer or simply let the tool append a signature page to the document.
  • Allow signers to type, draw, or upload signatures.
  • Receive notifications and webhooks for signing events.
  • Save time and effort by turning frequently used documents into reusable templates.
  • Seamlessly embed the signing experience directly in your app using an iFrame, allowing users to sign documents without ever leaving your platform.
  • Personalize the signing experience using your brand's logos and design choices.
  • Verify the identity of the user using eID verification.
  • Assure compliance with various standards, such as the Health Insurance Portability and Accountability Act (HIPAA) and the Electronic Identification and Trust Services (eIDAS) Regulation.
  • Add team members and manage their access.
  • Use APIs and SDKs in various programming languages to seamlessly integrate and interact with the tools.
  • Integrate with popular third-party services, such as Google Drive, HubSpot, and Salesforce.

In addition to these features, SignNow provides enhanced customization with fine-grained control over the signing process. For example, you can configure when to send reminders to signers, secure documents with passwords, set the signing order, and enable recipients to decline signing. SignNow also offers native Android and iOS apps, allowing you to manage and sign documents directly from your mobile device:

SignNow sample document

‍

In comparison, Dropbox Sign boasts a simpler and more polished user experience. It's designed to make it easy for developers to get started.

Dropbox Sign integrates seamlessly with Dropbox for document storage and management. If you're already using Dropbox for storage, you can seamlessly access the eSignature features of Dropbox Sign from your Dropbox dashboard:

Signing a document with Dropbox Sign

‍

Dropbox Sign and SignNow offer a comprehensive set of eSignature features. Your specific business requirements should guide your choice between them, whether that’s advanced security measures, tailored workflows, or smooth integrations with your current tools and services.

‍

API and SDK

Both Dropbox Sign and SignNow offer APIs and SDKs for third parties to programmatically interact with them. SignNow offers a REST API that helps you make full use of its features. It also offers official SDKs in five languages, including Node.js, C#, Java, Python, and PHP. However, some of the SDKs are not maintained regularly. For example, the Node SDK was last updated three years ago, which means it may lack recent features and vulnerability fixes.

Just like SignNow, Dropbox Sign has a REST API and a collection of SDKs. Dropbox Sign maintains and updates its SDKs regularly and offers SDKs for all the languages that SignNow does as well as an SDK for Ruby.

If you compare the APIs and SDKs, it's clear that SignNow focuses more on customization and fine-grained control. In contrast, Dropbox Sign focuses more on simplicity and ease of use. Take the SignNow Invite to sign API for instance. This sends a document to signers and invites them to sign it. To use this API, you need to initially use the Upload document API to upload a file to the user's account:


```bash
curl --request POST \
  --url https://api.signnow.com/document \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer {{access_token}}' \
  --header 'Content-Type: multipart/form-data' \
  --form file=...
```

‍

Then, you can add different fields, including signature fields, to the document using the Edit document API:


```bash
curl --request PUT \
  --url https://api.signnow.com/document/{document_id} \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer {{access_token}}' \
  --header 'Content-Type: application/json' \
  --data '{
  "fields": [
	{
  	"x": 358,
  	"y": 171,
  	"width": 177,
  	"height": 50,
  	"type": "text",
  	"page_number": 0,
  	"required": true,
  	"role": "Signer 1",
  	"custom_defined_option": false,
  	"name": "signature1",
  	"validator_id": "{{number_validator_id}}"
	}
  ],
  "elements": [],
  "client_timestamp": "timestamp"
}'
```

‍

Finally, you can send this document for signing using the Invite to sign API:


```bash
curl --request POST \
  --url https://api.signnow.com/document/{document_id}/invite \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer {{access_token}}' \
  --header 'Content-Type: application/json' \
  --header 'Content-type: ' \
  --data '{
  "document_id": "d9XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
  "to": [
	{
  	"email": "signer1@emaildomain.com",
  	"role_id": "48XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
  	"role": "Signer 1",
  	"order": 1,
  	"prefill_signature_name": "Signer 1",
  	"force_new_signature": 1,
  	"reassign": "0",
  	"decline_by_signature": "0",
  	"reminder": {
    	"remind_after": 3,
    	"remind_repeat": 7
  	},
  	"expiration_days": 30,
  	"authentication_type": "password",
  	"password": "123456",
  	"subject": "You've got a new signature request",
  	"message": "Hi, this is an invite to sign a document from sender@emaildomain.com.",
  	"redirect_uri": "https://unique-solutions.com",
  	"decline_redirect_uri": "https://unique-solutions.com",
  	"close_redirect_uri": "https://unique-solutions.com",
  	"redirect_target": "blank"
	}
  ],
  "from": "sender@emaildomain.com",
  "cc": [
	"cc_recipient1@emaildomain.com",
	"cc_recipient2@emaildomain.com"
  ],
  "cc_step": [
	{
  	"name": "CC 1",
  	"email": "cc_recipient1@emaildomain.com",
  	"step": 1
	},
	{
  	"name": "CC 2",
  	"email": "cc_recipient2@emaildomain.com",
  	"step": 2
	}
  ],
  "viewers": [
	{
  	"email": "viewer@emaildomain.com",
  	"role": "Viewer 1",
  	"order": 1,
  	"close_redirect_uri": "https://unique-solutions.com",
  	"redirect_target": "blank",
  	"subject": "New document",
  	"message": "You've got a new document to review."
	}
  ],
  "subject": "sender@emaildomain.com needs your signature",
  "message": "sender@emaildomain.com invited you to sign the Invoice document",
  "cc_subject": "cc Invoice request",
  "cc_message": "cc Invoice request for Signer 1"
}'
```

‍

Compare this with the Dropbox Sign Send Signature Request API. This lets you upload a file, add fields to it, and send it for signature, all in a single API call:



```bash
curl -X POST 'https://api.hellosign.com/v3/signature_request/send' \
  -u 'YOUR_API_KEY:' \
  -F 'files[0]=@mutual-NDA-example.pdf' \
  -F 'title=NDA with Acme Co.' \
  -F 'subject=The NDA we talked about' \
  -F 'message=Please sign this NDA and then we can discuss more. Let me know if you have any questions.' \
  -F 'signers[0][email_address]=jack@example.com' \
  -F 'signers[0][name]=Jack' \
  -F 'signers[0][order]=0' \
  -F 'signers[1][email_address]=jill@example.com' \
  -F 'signers[1][name]=Jill' \
  -F 'signers[1][order]=1' \
  -F 'cc_email_addresses[]=lawyer1@dropboxsign.com' \
  -F 'cc_email_addresses[]=lawyer2@dropboxsign.com' \
  -F 'metadata[custom_id]=1234' \
  -F 'metadata[custom_text]=NDA #9' \
  -F 'signing_options[draw]=1' \
  -F 'signing_options[type]=1' \
  -F 'signing_options[upload]=1' \
  -F 'signing_options[phone]=1' \
  -F 'signing_options[default_type]=draw' \
  -F 'field_options[date_format]=DD - MM - YYYY' \
  -F 'form_fields_per_document[0][document_index]=0' \
  -F 'form_fields_per_document[0][name]=' \
  -F 'form_fields_per_document[0][placeholder]=' \
  -F 'form_fields_per_document[0][type]=text' \
  -F 'form_fields_per_document[0][x]=112' \
  -F 'form_fields_per_document[0][y]=328' \
  -F 'form_fields_per_document[0][width]=100' \
  -F 'form_fields_per_document[0][height]=16' \
  -F 'form_fields_per_document[0][required]=true' \
  -F 'form_fields_per_document[0][signer]=1' \
  -F 'form_fields_per_document[0][page]=1' \
  -F 'form_fields_per_document[0][validation_type]=numbers_only' \
  -F 'test_mode=1'
```

‍

SignNow's approach of separating the steps into different API calls gives you more control over the process. However, this can also prove to be more complicated and time-consuming to write and maintain. Additionally, the separate API calls may eat into your network bandwidth. In contrast, the approach of Dropbox Sign having a single API call is easier to debug and maintain.

The same principle is also evident in their SDK design. To send a document for signature with SignNow, you need to upload a file, edit the document to add fields, and send invites. As you might have guessed, all this can be done in one step using Dropbox Sign SDKs.

Both platforms provide options for testing their APIs without incurring costs. SignNow offers the ability to create a development app to test the features for free. When you're ready to deploy your integration, you can simply change the app to a live app and use it in production. In contrast, Dropbox Sign provides a `test_mode` parameter on almost every API. In ‌test mode, you're not charged, and the signatures aren't legally binding.

Both platforms provide excellent documentation for their APIs. The SignNow API documentation boasts of a clean and minimal design, where each API endpoint is organized hierarchically. Each endpoint request-and-response payload is clearly described with examples. You can also find code snippets in many different programming languages:

SignNow's code snippet documentation

‍

The Dropbox Sign API documentation is also designed well, keeping ease of use in mind. Just like SignNow, the API endpoints are grouped in a hierarchical model. A clear, visual explanation of the request-and-response structure and code snippets accompanies each endpoint. SignNow also offers code snippets in more languages. Meanwhile, the Dropbox Sign API documentation offers an interactive API testing tool that lets you try out the API straight from the browser:

Dropbox Sign interactive testing tool

‍

Support and documentation

SignNow and Dropbox Sign both provide detailed documentation and support options. Dropbox Sign focuses on developer support. Meanwhile, SignNow documentation is better suited for enterprise-level users who might have more complex needs.

The documentation for Dropbox Sign is well-organized and includes code examples, SDK integration guides, and use-case walkthroughs. The documentation covers all the key features, such as form creation, multi-party signing, embedded and non-embedded signing, and advanced workflows.

Dropbox Sign also offers a dedicated developer forum that makes it easy for developers to get the help they need. If developers run into issues during the integration, they can utilize the API help center. They can submit a support request here or refer to hundreds of available resources.

SignNow also offers extensive documentation covering key features like form creation, multi-party signing, and advanced workflows. In addition to the API reference, the documentation site includes guides and sample apps to help users get started. Similar to Dropbox Sign, SignNow offers a Developer community that allows users to ask questions and share knowledge. However, based on ‌recent posts, the community doesn't seem to be very active. SignNow also offers a help center with tutorials, FAQ, and options to contact support.

‍

Ease of use

Dropbox Sign stands out as the clear leader in ease of use, with its UI, UX, and DX thoughtfully designed for a seamless user experience. Dropbox Sign offers a more user-friendly experience with a simpler interface, making it easy for developers to get started. Additionally, its intuitive APIs and clear documentation reduce the amount of time and effort required for integration. Its documentation site includes walkthroughs for most common use cases, which can help developers get started quickly. Thanks to its easy-to-use API, Dropbox Sign won the award for the Best in Business Software APIs at API World 2022.

SignNow also provides a comprehensive set of features. However, its interface can be complicated for developers who are new to the platform. Since it supports some advanced features and customization options, there could be a steep learning curve while getting started. The most common complaint on G2 about SignNow is that the UI and UX can be difficult to understand.

‍

요금

Pricing is an important factor to consider before you start using a tool. This is especially true for individual developers and small or medium-sized businesses. Choosing the right plan is crucial for managing costs effectively as the number of documents and signatories increases. Both SignNow and Dropbox Sign offer multiple pricing plans with varying feature sets, catering to different business sizes and needs.

Dropbox Sign offers a free plan, which gives you three signature requests. This is a great choice for developers with one-off signing needs. For more advanced usage, Dropbox Sign offers individual and team plans, which are ideal for businesses and developers alike. All plans include the core set of features with unlimited signature requests via its web app. Additionally, the Standard plan provides access to advanced options, like team management, audit trails, and more integrations. The Premium plan is aimed at large organizations that are looking to integrate advanced features, like advanced signer fields, single sign-on (SSO), eID verification, bulk sending, and enhanced reporting.

For developers who want to integrate Dropbox Sign into their application using the Dropbox Sign API, there are the Essentials, Standard, and Premium plans. Prices vary based on the volume of signature requests per month.

SignNow doesn't offer an individual plan, but it offers multiple business and enterprise plans. SignNow's base plan provides access to unlimited templates and multiple document formats. However, unlike Dropbox Sign, SignNow doesn't support unlimited signature requests. The Business Premium plan grants access to advanced features, such as eID verification and in-person signing. For larger teams, the Enterprise plan offers more customization, including dedicated account managers and advanced security features. For developers working as contractors for multiple clients, SignNow offers a Site License plan. This plan charges a fixed price for each signature invite and comes with the full set of SignNow features, along with full API access and CRM integrations.

Dropbox Sign pricing is suited for individuals and businesses, offering advanced features at competitive rates. Meanwhile, SignNow's pricing structure is more expensive and more suited to enterprises.

‍

Maturity and flexibility 

Dropbox Sign and SignNow are both mature, customizable, and enterprise-ready eSignature solutions. They offer a range of features to meet the needs of businesses of all sizes.

SignNow has been around since 2011 and has built a strong reputation for its security features and advanced workflow capabilities. 

Dropbox Sign was formerly known as HelloSign and was acquired by Dropbox in 2019. Being under the trustworthy umbrella of Dropbox makes it a reliable choice for individuals and businesses alike. Reputed companies, like Stack Exchange, Greenhouse, and Instacart, use Dropbox Sign for their eSignature needs. According to G2, Dropbox Sign is rated 4.7 stars out of 5 by their satisfied customers.

‍

Conclusion

Dropbox Sign and SignNow are both powerful, customizable, and secure eSignature solutions that cater to a wide range of industries and use cases. This article explored the key features of these platforms. It highlighted their similarities and differences, helping developers make informed decisions based on their requirements. Both platforms offer robust eSignature capabilities with advanced security features built into the platform. SignNow provides more advanced customization options and features. Meanwhile, Dropbox Sign offers a more streamlined and easy-to-use experience.

With its powerful API, customizable workflows, and developer-friendly documentation, Dropbox Sign is designed to simplify the signing process. Dropbox Sign API enables developers to embed signing functionality, create templates, and manage documents efficiently, offering the flexibility and scalability needed for growing businesses. Its straightforward implementation and rapid deployment capabilities allow teams to transition from testing to production in days rather than weeks, making it an ideal solution for automating and optimizing workflows.

진행 상태 확인

모두 완료되었습니다! 받은 편지함을 확인하세요.

Thank you!
Thank you for subscribing!

Lorem ipsum

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat. Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet. Nunc ut sem vitae risus tristique posuere.

Lorem ipsum
오른쪽 방향 화살표 아이콘
닫기 아이콘

Up next:

현대 디지털 서명 솔루션을 나타내는 수기 서명의 클로즈업 일러스트레이션.
개발자
15개
분 소요

Dropbox Sign과 Ruby on Rails 통합: 단계별 튜토리얼

개발자
10
분 소요

개발자를 위한 Dropbox Sign과 Docusign 비교

Video

PHP를 사용한 삽입된 서명

제품
Dropbox SignDropbox Sign APIDropbox Fax연동
Dropbox Sign이어야 하는 이유
전자 서명문서에 서명PDF 작성과 서명온라인 계약전자 서명 만들기서명 편집기Word 문서 서명
지원
도움말 센터영업팀에 문의지원팀에 연락쿠키 관리시작하기: Dropbox Sign시작하기: Dropbox Sign API
관련 자료
블로그고객 이용 후기자료 센터합법성 지침신뢰 센터
파트너
전략적 파트너파트너 찾기
회사
함께 일하기이용 약관개인정보 보호
Facebook 아이콘Youtube 아이콘

사용 가능한 결제 수단

Mastercard 로고Visa 로고American Express 로고Discover 로고
CPA 컴플라이언스 배지HIPAA 컴플라이언스 배지Sky High Enterprise Ready 배지ISO 9001 인증 배지

Dropbox Sign 전자 서명은 미국, 유럽연합, 영국을 비롯해 전 세계 많은 국가에서 법적 구속력을 발휘합니다.
더 자세한 정보는 이용 약관과 개인정보처리방침에서 확인할 수 있습니다.