
DocuSign for Appleで生活とビジネスに継続的な進化を
Appleソリューション
スモールビジネスから大規模なエンタープライズまで。DocuSignは、時間と場所に関係なく、お好みのiOSデバイス上で文書の署名、送信、管理が可能なシンプルでセキュアな完全にデジタル化されたソリューションを提供します。DocuSign for iOSを使用すると、取引をより迅速に完了し、売上を増やし、顧客と従業員双方のエクスペリエンスを向上させることができます。世界中のユーザー数1億人以上。DocuSignは、最も安定した信頼できる電子署名と認証のサービスです。

DocuSign for iOS
お手持ちのAppleデバイスでトランザクションをより早く完了。時と場所を選ばずに、署名、送信、文書の管理をお好みのiOSデバイスで信頼し安心して行うことができます。キャリアグレードのアベイラビリティと業界標準のセキュリティの実績を持つDocuSignは、43言語で利用可能。世界規模でセキュアなトランザクションを可能にします。
アプリをダウンロードサードパーティ製iOSアプリ
お好みのiOSアプリから電子署名を。DocuSignはすでにお使いのiOSアプリとシームレスに統合し、ユーザーに最も適した方法でDocuSignをご利用いただけます。Salesforce1アプリ内で取引を簡単に完了し契約を締結、あるいは、Boxのアカウントから得た文書に直接署名し送信することもできます。文書が完成したら、自動的に保存しBoxやGoogleドライブに保管します。








カスタムiOSソリューション
DocuSignのモバイルSDKとAPIを用いて、ご利用のカスタムiOSアプリに手早く簡単にDocuSignを組み込むことができます。DocuSignを既存のシステムに接続すると、自動的にデータを取得し返すことができます。

import com.docusign.esign.client.*;
import com.docusign.esign.model.*;
// Enter your DocuSign credentials
String UserName = "[EMAIL]";
String Password = "[PASSWORD]";
String IntegratorKey = "[INTEGRATOR_KEY]";
// for production environment update to "www.docusign.net/restapi"
String BaseUrl = "https://demo.docusign.net/restapi";
// initialize the api client for the desired environment
ApiClient apiClient = new ApiClient();
apiClient.setBasePath(BaseUrl);
// create JSON formatted auth header
String creds = "{\"Username\":\"" + UserName + "\",\"Password\":\"" + Password + "\",\"IntegratorKey\":\"" + IntegratorKey + "\"}";
apiClient.addDefaultHeader("X-DocuSign-Authentication", creds);
// assign api client to the Configuration object
Configuration.setDefaultApiClient(apiClient);
try
{
// login call available off the AuthenticationApi
AuthenticationApi authApi = new AuthenticationApi();
// login has some optional parameters we can set
AuthenticationApi.LoginOptions loginOps = authApi.new LoginOptions();
loginOps.setApiPassword("true");
loginOps.setIncludeAccountIdGuid("true");
LoginInformation loginInfo = authApi.login(loginOps);
// note that a given user may be a member of multiple accounts
List
System.out.println("LoginInformation: " + loginAccounts);
}
catch (com.docusign.esign.client.ApiException ex)
{
System.out.println("Exception: " + ex);
}
DocuSignのモバイルSDKとAPIを用いて、ご利用のカスタムiOSアプリに手早く簡単にDocuSignを組み込むことができます。DocuSignを既存のシステムに接続すると、自動的にデータを取得し返すことができます。
デベロッパーセンター
