ข้ามไปยังเนื้อหาหลัก
ไม่พบรายการ
โลโก้ Dropbox Sign
ทำไมถึงต้องเป็น Dropbox Sign
ขยายหรือซ่อนเนื้อหา

สิ่งที่คุณสามารถทำได้

ลงนามเอกสารออนไลน์
สร้างลายเซ็นอิเล็กทรอนิกส์
เลือกหรือสร้างแม่แบบ
กรอกข้อมูลและลงนามใน PDF
ทำสัญญาออนไลน์ให้เสร็จสมบูรณ์
การจัดการเอกสาร
สำรวจคุณสมบัติ
ไอคอนลูกศรชี้ไปทางขวา

กรณีการใช้งาน

การขายและการพัฒนาธุรกิจ
ทรัพยากรมนุษย์
สตาร์ทอัพ
เทคโนโลยีทางการเงิน
อสังหาริมทรัพย์
บริการตามความต้องการ
ผลิตภัณฑ์
ขยายหรือซ่อนเนื้อหา
ไอคอน Dropbox
Sign
ช่วยให้การส่งและลงนามเป็นเรื่องง่าย
ไอคอน Dropbox
Sign API
ผสาน eSign เข้ากับขั้นตอนการทำงานของคุณ
ไอคอน Dropbox Fax
Fax
ส่งแฟกซ์โดยไม่ต้องใช้เครื่องส่งแฟกซ์
ไอคอนการผสานการทำงานกับ Dropbox
การผนวกรวม
เราพร้อมให้บริการในที่ที่คุณทำงาน
ทรัพยากร
ขยายหรือซ่อนเนื้อหา
บล็อก
ความเชี่ยวชาญด้านขั้นตอนการทำงานและข่าวสารผลิตภัณฑ์
เรื่องราวของลูกค้า
เรื่องราวที่เกิดขึ้นจริงพร้อมผลลัพธ์ที่จับต้องได้
ศูนย์ความช่วยเหลือ
คำแนะนำอย่างละเอียดเกี่ยวกับผลิตภัณฑ์ของเรา
ไลบรารีแหล่งข้อมูล
รายงาน วิดีโอ และเอกสารข้อมูล
นักพัฒนา
ค่าบริการ
ขยายหรือซ่อนเนื้อหา
ราคา Dropbox Sign
หาแผนบริการที่ใช่สำหรับคุณ
ราคา Dropbox Sign API
เรื่องราวที่เกิดขึ้นจริงพร้อมผลลัพธ์ที่จับต้องได้
ติดต่อฝ่ายขาย
ลงทะเบียน
ติดต่อฝ่ายขาย
ลงชื่อเข้าใช้
ขยายหรือซ่อนเนื้อหา
Dropbox Sign
Dropbox Forms
Dropbox Fax
การทดลองใช้ฟรี
บล็อก
/
นักพัฒนา

How to automate eSignatures after online payment

by 
Luke Russell
February 15, 2023
5
นาที สำหรับการอ่าน
"How to Automate eSignatures After Online Payment" header image
ไอคอนเคล็ดลับเครื่องมือ

รูปลักษณ์โฉมใหม่แต่ยังเป็นผลิตภัณฑ์ที่ยอดเยี่ยมเช่นเดิม! HelloSign เปลี่ยนเป็น Dropbox Sign แล้วตอนนี้

ไอคอนปิด

How to automate eSignatures after online payment

Businesses need to get paid. It’s why they do what they do. Contracts are amazing tools for specifying dues and due dates, along with party responsibilities and risks. Every business needs an efficient way to handle contracts so they get exactly what they are owed, on time and with minimal expense. A business can't be slowed down by having to manually cross the T’s and dot the I’s on physical paperwork; digital is the name of the game now. Dropbox Sign helps businesses automate the process of generating digital contracts.


In this article, we'll be looking at a hypothetical service marketplace that connects professional house painters with customers. They want to automatically send customized contracts to customers on behalf of the service providers when customers pay the down payment. Each customer then completes their signature to officially confirm the painting service. Dropbox Sign will be used to automatically provide the eSignature request via the Dropbox Sign API using information received from the payment processor.


Use webhooks to begin the eSignature process

First, let's talk about payment services. Businesses want to know the moment payments come in so they can be processed immediately. A webhook is a common way to listen for incoming payments via your payment service provider and trigger an automated response. Whether the payment service you support is Stripe, Paypal, or another one entirely, as long as the service supports webhooks, it can be used to begin the automatic creation of the eSignature process. That being said, while most will support webhooks in some form or another, you’ll need look into how your specific payment processor handles webhook implementations.


Webhooks are often referred to as reverse APIs. While using an API involves your app sending information to a service, a webhook is where the service provides information to your app instead. It’s likely that the payment processor willl be able to provide charge details as JSON data. The payment information will look something like the following, an abridged version of what someone receives from Stripe when a charge is captured. Please note that this is just a snippet of what Stripe actually returns.

Now let's look at how this fits into our example of a house painter marketplace. Once a customer connects with a painter and makes a payment using a payment processor such as Stripe, the marketplace will receive information pertinent to the transaction from Stripe's webhook.


This information can then be extracted from the JSON in a straightforward manner, like so, if you were using Python.

This information can then be used to begin the eSignature process by making use of the Dropbox Sign API.

‍

A better way to manage your account and applications.
Our rebuilt API Dashboard gives you new ways to monitor and manage integrations, pinpoint irregular activity , restore your request success rate to 100%, and improve your reaction times and mitigate risk for you and your customers.
เรียนรู้เพิ่มเติม
ไอคอนลูกศร

‍

Send documents for signatures with Dropbox Sign

With the transaction details in hand, your app has everything it needs to collect signatures. This will be done through the Dropbox Sign API.


Before using the Dropbox Sign API, you'll need to create an account, and grab an API key from the Dropbox Sign web app. Usually, accessing the Dropbox Sign API requires a payment plan. However, you can make use of the free test mode Dropbox Sign provides to develop your workflow.


Protip: Dropbox Sign is a Dropbox company, so Dropbox users can simply use their existing account to log in and keep their credentials consolidated.


For using Python, you'll need Python 3 and the Dropbox Sign Python SDK. For more details on getting started using Dropbox Sign in a Python environment, check out our guide. We'll still touch on everything you need here, as well.


Import the Dropbox Sign SDK and use the API key to instantiate the client like so:

The `get_account_info()` call is a quick way to verify that the HSClient is correctly implemented. In this example, we'll assume there is a standard contract that is used for all the house painters in the marketplace. The contract in our example will be called "contract.pdf".


The service marketplace app can use the Send Signature Request endpoint to send a signature request with specific information regarding the signers and files. For the signer information, they can use the transaction details returned in the webhook payload from the payment processor. In this case, we're using the parameters `customer_email` and `customer_name`.

By using the `Send Signature Request` endpoint in the application, the flow looks like this: Once the payment process is completed and the webhook sent, Dropbox Sign sends out the contract template to the customer with their specific information pulled in via the webhook. The signers of the document are notified via email that their signatures are required.


Of course, sending the signature request is not the end of a signature flow. When the application makes a request, there will be a corresponding `signature_request_id`. This will be used to finish the process.


Provide tools to monitor document statuses

The current status of a contract document as it passes through its lifecycle provides actionable information. In our house painting example, we would like to dispatch painters to a paint job only if the underlying contract document has been signed by all parties. Thus, tools to track the status of a contract document are essential for process automation.


A fully-fleshed out service marketplace will provide additional features for businesses to help manage their digital paperwork. We'll look at just a few ways the Dropbox Sign API can be used to offer additional services.


First, business owners will likely want to be able to view the status of their documents on demand. You can use the `List Signature Requests` endpoint to let businesses view the documents they're connected to.

Furthermore, the API can be used to find all the signature requests that contain a specific name, or any other attribute for that matter, and grab those signature requests’ information to show in a filtered view somewhere on the application. Searching for a specific signer can be done like so:

And finally, you can give them the ability to download the signed files as well, incorporating the `get_signature_request_file` endpoint.

Throughout this article, we examined eSignature functionality through the lens of a service marketplace that connects house painters with customers. By making use of a payment processor's webhooks, we received data about a transaction and used it to create a new signature request with the Dropbox Sign API. We also added some functionality to monitor the status of signature requests.


These are just some of the building blocks of creating a robust eSignature workflow in a service marketplace. As you build out eSignature functionality to fully conform to your specific needs, you'll want to check out the full Dropbox Sign API documentation. We're sure that whatever your goals, the Dropbox Sign API can help you achieve them.

ได้รับข้อมูลเสมอ

เสร็จเรียบร้อย! กรุณาตรวจสอบกล่องขาเข้าของคุณ

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: บทแนะนำทีละขั้นตอน

ภาพประกอบที่แสดงลายเซ็นในระยะใกล้ ซึ่งแสดงถึงโซลูชันการลงนามแบบดิจิทัลที่ทันสมัย
นักพัฒนา
15
นาที สำหรับการอ่าน

Dropbox Sign vs. SignNow for developers

แม่แบบ

Employee evaluation template

ผลิตภัณฑ์
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 มีผลผูกพันทางกฎหมายในสหรัฐอเมริกา สหภาพยุโรป สหราชอาณาจักร และในหลายประเทศทั่วโลก
สำหรับข้อมูลเพิ่มเติม โปรดดูข้อตกลงและเงื่อนไขและนโยบายความเป็นส่วนตัวของเรา