想要提升传真质量?探索我们的解决方案!
我们的销售团队随时准备为您提供进一步的帮助。
获取定制高容量计划的定价详情。
安排 Fax.Plus 演示。
探索您团队的使用案例。
帮助您进行迁移过程。
请求访问沙盒
Fax.Plus 是twilio 的官方合作伙伴,提供安全、合规且易于使用的基于云的传真解决方案。体验无与伦比的灵活性、强大的安全性和卓越的可靠性Fax.Plus API。
Fax.Plus 功能强大且易于使用的可编程传真 API 可在各种开发平台上运行,例如 Javascript、Node.JS、Ruby、Python 和 Java。访问 API,使用 OAuth 2.0 流程或个人访问令牌 (PAT) 作为初始身份验证流程,并开始将传真功能集成到您的应用程序、软件或系统中。
探索 API 文档,使用 RESTful API、Webhook 集成等构建高效的传真解决方案。
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)
// ...
}
将传真功能集成到任何应用程序环境中 — 无论是 ERP、CRM、旧系统还是云平台。利用开放标准和协议(如 RESTful API)实现跨不同系统的无缝集成。
确保您的传真准确、及时地交付,并具有较高的传输成功率。自动纠错和强大的多云基础设施可最大限度地减少失败尝试并提高可靠性。
使用全面的安全措施保护数据,包括强大的加密、严格的访问控制、实时威胁检测和定期渗透测试。
随着应用程序的增长,轻松扩展传真操作,处理增加的传真量而不会影响性能。享受透明的定价,无隐藏费用(包括 SIP 呼叫免费),从而可以准确预算和管理项目成本。
轻松在全球范围内发送和接收传真、管理用于实时通知的 Webhook 以及直接通过 API 购买传真号码。检索详细的传真确认报告并添加可自定义的封面页以个性化您的通信。
使用以开发人员为中心的 API、全面的文档和流行编程语言的 SDK 快速高效地集成传真功能 - 使各个技能水平的开发人员都可以轻松访问。
我们的销售团队随时准备为您提供进一步的帮助。
获取定制高容量计划的定价详情。
安排 Fax.Plus 演示。
探索您团队的使用案例。
帮助您进行迁移过程。
请求访问沙盒