팩스 수준을 높이고 싶으십니까? 당사의 솔루션을 찾아보십시오!
저희 영업팀이 추가 지원을 제공할 준비가 되어 있습니다.
맞춤형 대용량 요금제에 대한 가격 정보를 확인하십시오.
Fax.Plus 데모를 예약하세요.
귀사 팀의 사용 사례를 살펴보십시오.
마이그레이션 프로세스를 도와드립니다.
샌드박스 액세스 요청
Fax.Plus는 안전하고 규정을 준수하며 사용하기 쉬운 클라우드 기반 팩스 솔루션을 제공하는 twilio의 공식 파트너입니다. Fax.Plus API를 통해 탁월한 유연성, 강력한 보안 및 뛰어난 안정성을 경험하십시오.
강력하면서도 사용하기 쉬운 Fax.Plus 프로그래밍 가능 팩스 API는 Javascript, Node.JS, Ruby, Python 및 Java와 같은 다양한 개발 플랫폼에서 작동합니다. API에 액세스하고 OAuth 2.0 흐름 또는 개인 액세스 토큰(PAT)을 초기 인증 흐름으로 사용하여 팩스 기능을 애플리케이션, 소프트웨어 또는 시스템에 통합하십시오.
RESTful API, Webhook 통합 등을 사용하여 효율적인 팩스 솔루션을 구축하려면 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()
from faxplus import ApiClient, OutboxApi, OutboxComment, RetryOptions, OutboxOptions, OutboxCoverPage, PayloadOutbox
from faxplus.configuration import Configuration
outbox_comment = OutboxComment(tags=['tag1', 'tag2'],
text='text comment')
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 and header_value required only when using the OAuth2 token scheme
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 통화에 대한 요금을 포함하여 숨겨진 수수료 없이 투명한 가격을 누리세요. 프로젝트에서 정확한 예산 책정 및 비용 관리가 가능합니다.
전 세계 어디에서나 간편하게 팩스를 보내고 받을 수 있으며, 실시간 알림을 위한 웹후크를 관리하고, API를 통해 직접 팩스 번호를 구매할 수 있습니다. 자세한 팩스 확인 보고서를 검색하고 사용자 정의 가능한 표지를 포함하여 커뮤니케이션을 개인화하십시오.
개발자 중심 API, 포괄적인 문서, 널리 사용되는 프로그래밍 언어의 SDK를 사용하여 팩스 기능을 빠르고 효율적으로 통합할 수 있습니다. 이를 통해 모든 기술 수준의 개발자가 쉽게 접근하고 사용할 수 있습니다.
저희 영업팀이 추가 지원을 제공할 준비가 되어 있습니다.
맞춤형 대용량 요금제에 대한 가격 정보를 확인하십시오.
Fax.Plus 데모를 예약하세요.
귀사 팀의 사용 사례를 살펴보십시오.
마이그레이션 프로세스를 도와드립니다.
샌드박스 액세스 요청