- A single PDF document.
- Two recipients: an approver with the key
manager, followed by a signer with the keyclient. - Sequential routing so the approver acts first.
- One signature place assigned to the signer. The approver does not need a signature or initials place.
- The signer will receive an email with a link to sign after the approver completes their step.
- The account’s default language, timezone, and timestamp format used.
The
delivery_type for approvers defaults to none. SignatureAPI will not send an invitation email to the approver automatically. Your application is responsible for sharing the ceremony URL with the approver. Set delivery_type to email if you want SignatureAPI to send the invitation.Create the Envelope
When creating the envelope:- Set
routingtosequential(this is the default, but it is good practice to be explicit). - Add the approver recipient before the signer in the
recipientsarray. The order of the array controls the routing order. - Set
"type": "approver"on the approver recipient. - Add a signature place to the
placesarray inside the document object, assigned to the signer only:key: Identifies the place. Must match the placeholder in the document file (e.g.,client_signature).type: Set tosignature.recipient_key: Set to the signer’s key (client).
Result
If the request is successful, Sarah Chen (themanager) enters the approver ceremony first. She reviews the document and, when satisfied, clicks Approve.


client). Michael receives an email with a link to sign the document and places his signature on the designated signature line.
Try It
Try this example in Postman using your test API key to create a free, non-binding test envelope. Test envelopes won’t send emails, but you can review them in your dashboard.Keep Learning
- Learn about sequential signing for workflows with multiple signers in a specific order.
- Learn about parallel signing for workflows where signing order does not matter.
- Explore the Approver recipient reference for details on delivery and place assignments.
- Explore other types of places, such as text inputs that can be assigned to approvers.