法的拘束力のある電子署名と安全なファックスをシームレスに統合することで、ワークフローを合理化します。堅牢でスケーラブルなソリューションで開発を加速します。 Sign.Plus そしてFax.Plusこれによって、アプリケーション全体の導入が高速化され、効率が向上し、自動化が強化されます。
アプリケーションから直接、HIPAA 準拠のファックスを送信したり、QES 署名用の文書を送信したり、ESIGN 法、ZertES、eIDAS に完全に準拠したりできます。
eIDASとZertESに完全準拠した法的拘束力のある電子署名機能でアプリケーションを強化します。 Sign.Plus API。RESTfulエンドポイントとOAuth 2.0認証を使用して、シームレスなドキュメント管理、カスタマイズ可能な署名ワークフロー、監査証跡をアプリに簡単に統合できます。契約承認の自動化や合意の合理化など、 Sign.Plus 開発者が安全でスケーラブルな電子署名ソリューションを構築するために必要なツールを提供します。
信頼性が高く安全なFAX機能をアプリケーションに統合します。 Fax.Plus API。世界中でファックスを送受信し、Webhook を介してリアルタイム通知を管理し、T.38 エラー修正と Tier 1 ファックス パートナーへの直接接続を使用してファックス ワークフローを自動化します。開発者を念頭に設計された RESTful API、包括的な SDK、柔軟なプロトコルにより、スケーラブルで堅牢なファックス ソリューションを簡単に構築できます。
Sign.Plus は、複数のプログラミング言語にわたるアプリケーションとのシームレスな統合のために設計された、開発者中心の電子署名 API を提供します。RESTful エンドポイントとリアルタイム Webhook 統合を活用して、ドキュメント ワークフローを自動化し、再利用可能なテンプレートを作成し、監査証跡を効率的に管理します。詳細な API ドキュメントには、開発者がスケーラブルで準拠した信頼性の高い電子署名ソリューションを構築できるようにするための詳細なガイダンス、サンプル リクエスト、ベスト プラクティスが含まれています。
1const options = {
2 method: 'POST',
3 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
4 body: '{"name":"<string>","legality_level":"SES","expires_at":123,"comment":"<string>","sandbox":false}'
5};
6
7fetch('https://restapi.sign.plus/v2/envelope', options)
8 .then(response => response.json())
9 .then(response => console.log(response))
10 .catch(err => console.error(err));
import requests
url = "https://restapi.sign.plus/v2/envelope"
payload = {
"name": "<string>",
"legality_level": "SES",
"expires_at": 123,
"comment": "<string>",
"sandbox": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://restapi.sign.plus/v2/envelope",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "{\n \"name\": \"<string>\",\n \"legality_level\": \"SES\",\n \"expires_at\": 123,\n \"comment\": \"<string>\",\n \"sandbox\": false\n}",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://restapi.sign.plus/v2/envelope"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"legality_level\": \"SES\",\n \"expires_at\": 123,\n \"comment\": \"<string>\",\n \"sandbox\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
Fax.Plus 強力でありながら使いやすいプログラム可能な FAX API は、Javascript、Node.JS、Ruby、Python、Java などのさまざまな開発プラットフォームで動作します。API にアクセスし、OAuth 2.0 フローまたは個人アクセス トークン (PAT) のいずれかを初期認証フローとして使用して、FAX 機能をアプリケーション、ソフトウェア、またはシステムに統合し始めます。
RESTful API、Webhook 統合などを使用して効率的な FAX ソリューションを構築するための API ドキュメントをご覧ください。
1const axios = require('axios');
2const OutboxApiFp = require('@alohi/faxplus-api').OutboxApiFp;
3const Configuration = require('@alohi/faxplus-api').Configuration;
4
5const config = new Configuration({
6 accessToken: accessToken,
7 basePath: 'https://restapi.fax.plus/v3',
8 // Header required only when using the OAuth2 token scheme
9 baseOptions: {
10 headers: {
11 "x-fax-clientid": clientId,
12 }
13 }
14});
15
16async function sendFax() {
17 const reqParams = {
18 "userId": '13d8z73c',
19 "payloadOutbox": {
20 "comment": {
21 "tags": [
22 "tag1",
23 "tag2"
24 ],
25 "text": "text comment"
26 },
27 "files": [
28 "filetosend.pdf"
29 ],
30 "from": "+12345667",
31 "options": {
32 "enhancement": true,
33 "retry": {
34 "count": 2,
35 "delay": 15
36 }
37 },
38 "send_time": "2000-01-01 01:02:03 +0000",
39 "to": [
40 "+12345688",
41 "+12345699"
42 ],
43 "return_ids": true
44 }
45 }
46 const req = await OutboxApiFp(config).sendFax(reqParams);
47 const resp = await req(axios);
48}
49
50sendFax()
faxplusからApiClient、OutboxApi、OutboxComment、RetryOptions、OutboxOptions、OutboxCoverPage、PayloadOutboxをインポートします。 faxplus.configurationからConfiguration をインポートします。outbox_comment = OutboxComment(tags=[ 'tag1' , 'tag2' ], text= 'テキストコメント' ) retry_options = RetryOptions(count= 2 , delay= 15 ) outbox_options = OutboxOptions(enhancement= True , retry=retry_options) outbox_cover_page = OutboxCoverPage() payload_outbox = PayloadOutbox( from = '+12345667' , to=[ '+12345688' , '+12345699' ], files=[ 'filetosend.pdf' ], comment=outbox_comment, options=outbox_options, send_time= '2000-01-01 01:02:03 +0000' , return_ids= True 、 cover_page=outbox_cover_page) conf = Configuration() conf.access_token = access_token # header_name と header_value は OAuth2 トークン スキームを使用する場合にのみ必要です
api_client = ApiClient(header_name= 'x-fax-clientid' 、header_value=client_id、configuration=conf) api = OutboxApi(api_client) resp = api.send_fax( user_id= '13d8z73c' 、 body=payload_outbox)
<?php
require 'vendor/autoload.php';
$headers = array(
'Accept' => 'application/json',
'Authorization' => 'Bearer {access-token}',
// The x-fax-clientid header is required only when using the OAuth2 token scheme
'x-fax-clientid' => '{client ID}',
);
$client = new GuzzleHttp\Client();
// Define array of request body.
$request_body = ...; // See request body example
try {
$response = $client->request('POST','https://restapi.fax.plus/v3/accounts/{user_id}/outbox', array(
'headers' => $headers,
'json' => $request_body,
)
);
print_r($response->getBody()->getContents());
}
catch (GuzzleHttp\Exception\BadResponseException $e) {
// handle exception or api errors.
print_r($e->getMessage());
}
// ...
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
// The x-fax-clientid header is required only when using the OAuth2 token scheme
"Content-Type": []string{"application/json"},
"Accept": []string{"application/json"},
"Authorization": []string{"Bearer {access-token}"},
"x-fax-clientid": []string{"YOUR CLIENT_ID"}
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("POST", "https://restapi.fax.plus/v3/accounts/{user_id}/outbox", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
サンドボックス環境へのアクセスをリクエストし、統合のテストを開始してください。 Sign.Plus そしてFax.Plus —リスクなし、シームレスな開発。