想要提升传真质量?探索我们的解决方案!
我们的销售团队随时准备为您提供进一步的帮助。
获取定制高容量计划的定价详情。
安排 Fax.Plus 演示。
探索您团队的使用案例。
帮助您进行迁移过程。
请求访问沙盒
安全的传真 API 设计必须将合规性嵌入到数据处理的每个阶段。 Fax.Plus HIPAA 计划确保所有传输和存储的数据默认遵循这些原则。
发送传真:将传真作业提交至Fax.Plus ,接收唯一的作业 ID,并通过安全的 webhook 回调监控进度。
接收传真:路由来自Fax.Plus 直接连接到您环境中的安全、访问受控的端点。
管理发件箱:列出、检索、更新或取消发件箱中待处理的传真作业,以控制计划发送和处理异常。
传真号码:提供和管理支持传真的电话号码,将其分配给用户,并配置通知或路由首选项。
可靠性和安全性:配置重试、超时和幂等性密钥,以防止重复发送并确保一致交付。
使用Fax.Plus 用于交付收据、失败通知和审计日志的 webhook,带有符合 HIPAA 要求的元数据。
实施签名验证和秘密轮换以确保 webhook 的真实性。 Fax.Plus 为两者提供工具。
Fax.Plus 使用 AES-256加密所有静态 PHI ,并使用 TLS 加密传输中的所有 PHI。
避免将 PHI 存储在您这边的日志或临时文件中; Fax.Plus 从不将 PHI 包含在 webhook 有效负载中。
尽可能使用编辑并配置Fax.Plus 保留设置仅保留所需的最少数据。
使用以开发人员为中心的 API、全面的文档和 SDK 将传真功能集成到您的 EMR、EHR、客户门户或系统中,使各个技能水平的开发人员都可以轻松使用。
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导入配置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 # 仅在使用 OAuth2 令牌方案时才需要 header_name 和 header_value
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)
// ...
}
对存储的文件(静态)进行 AES-256 加密。
用于传输数据的 TLS/SSL。
基于角色的访问控制 (RBAC)。
单点登录 (SSO) 和双因素身份验证 (2FA)。
带有时间戳和交付确认的详细日志。
防篡改记录。
可配置的保留策略。
存档和安全删除。
医疗保健组织使用Fax.Plus 符合 HIPAA 标准的传真 API 可以:
公司和团队信任Fax.Plus 发展他们的业务
所有 Alohi 服务均具有一致、可靠的正常运行时间
受影响的国家Fax.Plus
我们的销售团队随时准备为您提供进一步的帮助。
获取定制高容量计划的定价详情。
安排 Fax.Plus 演示。
探索您团队的使用案例。
帮助您进行迁移过程。
请求访问沙盒