1

I'd like to launch the DocuSign iOS app from the iOS application I'm working on. Does the DocuSign app have a custom URL scheme that I can use to open it?

1 Answers1

2

There is no URL scheme, but they do have an iOS library you can integrate. It makes calls to their server. You will also have to create a developer account with them.

DocuSign SDK: https://github.com/docusign/docusign-ios-sdk

DocuSign Developer Center: https://www.docusign.com/developer-center

The SDK is actually better than an URL scheme, since it lets the user sign a document right from inside your app!

Zaid Daghestani
  • 8,555
  • 3
  • 34
  • 44
  • Thanks, Zaid. I do know about their iOS library but unfortunately the project I'm working on is built against iOS 6 and the library seems to be only compatible with iOS 7 and up, so unfortunately that's not an option. – Samantha Elizabeth Schaffer Apr 08 '15 at 02:51