- A single PDF document with one signature place.
- One recipient with
delivery_typeset tonone(deliverables are not sent automatically). - An inline
ceremonyobject with custom authentication andurl_variantset toshortfor SMS-friendly URLs.
Create the Envelope
Setdelivery_type to none on the recipient so the completed deliverable is not automatically emailed. Include a ceremony object on the recipient with custom authentication (since your application handles delivery) and set url_variant to short to generate a compact URL suitable for SMS.
delivery_type: Set tononeso the completed deliverable is not automatically emailed to this recipient. Your application is responsible for distributing the deliverable.ceremony: Configures the signing ceremony inline. SignatureAPI creates the ceremony automatically when the envelope starts processing.ceremony.authentication: Usescustomtype since your application handles delivery. Theprovideranddatavalues are recorded in the audit log.ceremony.url_variant: Set toshortto generate a compact URL likehttps://sign.signatureapi.com/s/BgnexxxxxxxxIbRi, which fits within SMS character limits.
The recipient still requires an
email property even when delivery_type is none. The email is used for identification and audit purposes.Get the Ceremony URL
The response includes the short ceremony URL inrecipients[].ceremony.url:
Send the Link via SMS
Take theurl from the ceremony response and deliver it through your SMS provider (such as Twilio, MessageBird, or Amazon SNS).
Result
When the recipient completes the ceremony, SignatureAPI updates the envelope status as usual. You can track completion through webhooks or by polling the envelope.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 more about short ceremony URLs and when to use them.
- Use custom authentication to record additional context about how the signer was verified.
- Embed the signing ceremony in your own web application instead of redirecting to the SignatureAPI signing page.
- Set up webhooks to receive real-time notifications when signing completes.