제품
솔루션
비즈니스 세그먼트
고객이 대규모로 트래픽을 전송할 수 있도록 지원
산업 분야
빠르고 편리한 환자 경험을 직접 또는 집에서 제공하다
부서
가장 인기 있는 채널에서 효율적인 고객 서비스를 제공하다
영업 자동화로 리드 생성 증가, 교차 판매 및 업셀링 기회 확대, 그리고 옴니채널 판매 솔루션 활용.
통합된 옴니채널 플랫폼에서 자동화된 영업 프로세스를 구축하여 효율성을 극대화하세요.
챗봇 가상 비서를 통해 고객이 필요한 답변을 언제든지 제공하세요. 24/7 고객 지원으로 빠른 거래 완료를 유도하세요.
보다 복잡한 영업 프로세스의 경우, 챗봇이 기본 정보를 제공한 후 원활하게 상담원에게 연결하여 판매를 성사시킬 수 있습니다.
고객 여정에 대화형 경험을 추가하여 전체 마감율을 높이세요. 첫 접점부터 최종 전환까지 다양한 채널을 활용해 고객과 지속적으로 소통하며 원활한 대화를 유지할 수 있습니다.
연결된 고객 데이터를 최대한 활용하여 새로운 교차 판매 및 업셀링 기회를 창출하세요. 고객 여정의 모든 접점에서 얻은 인사이트를 활용하여 AI 및 영업 담당자가 적절한 정보를 제공할 수 있도록 지원함으로써 판매를 촉진하고 전환율을 높일 수 있습니다.
영업 담당자에게 부서 간 통합된 고객 이력을 제공하여 높은 전환율의 영업 기회를 발굴하세요. 고객이 어떤 채널을 통해 어떤 내용을 공유했는지 파악하고, 이를 활용하여 보다 빠르고 효율적으로 매출을 성장시킬 수 있습니다.
1
final String platform =
const platform =
const string platform =
const platform =
platform =
platform =
$platform =
;
;
;
;
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse(
"application/json");
RequestBody body = RequestBody.create(mediaType,
"{\"personData\":{\"externalId\":\"1\",\"firstName\":\"Jane\",\"lastName\":\"Smith\",\"address\":\"67 Farringdon Road\",\"city\":\"London\",\"country\":\"United Kingdom\",\"gender\":\"FEMALE\",\"birthDate\":\"1966-01-15\",\"middleName\":\"Janie\",\"profilePicture\":\"http://profile.com\",\"tags\":[\"VIP Customers\",\"New Customers\"],\"customAttributes\":{\"Contract Expiry\":\"2018-06-01\",\"Company\":\"Acme\"},\"contactInformation\":{\"phone\":[{\"number\":\"41793026727\"},{\"number\":\"41793026728\"}],\"email\":[{\"address\":\"[email protected]\"},{\"address\":\"[email protected]\"}]}},\"flowVariables\":{\"orderDate\":\"2021-09-01\",\"orderDetails\":\"Extended Weight, Discount\",\"orderNumber\":1234567}}");
Request request = new Request.Builder()
.url(
"https://{baseUrl}/communication/1/flows/10159347/participants?phone&[email protected]&externalId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab&pushRegistrationId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab")
.method(
"POST", body)
.addHeader(
"Authorization",
"{authorization}")
.addHeader(
"Content-Type",
"application/json")
.addHeader(
"Accept",
"application/json")
.build();
Response response = client.newCall(request).execute();
2
3
4
5
6
7
8
9
10
11
12
13
{
"personData": {
"externalId":
"1",
"firstName":
"Jane",
"lastName":
"Smith",
"address":
"67 Farringdon Road",
"city":
"London",
"country":
"United Kingdom",
"gender":
"FEMALE",
"birthDate":
"1966-01-15",
"middleName":
"Janie",
"profilePicture":
"http://profile.com",
"tags": [
"VIP Customers",
"New Customers"
],
"customAttributes": {
"Contract Expiry":
"2018-06-01",
"Company":
"Acme"
},
"contactInformation": {
"phone": [
{
"number":
"41793026727"
},
{
"number":
"41793026728"
}
],
"email": [
{
"address":
"[email protected]"
},
{
"address":
"[email protected]"
}
]
}
},
"flowVariables": {
"orderDate":
"2021-09-01",
"orderDetails":
"Extended Weight, Discount",
"orderNumber":
1234567
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
var client =
new RestClient(
"https://{baseUrl}/communication/1/flows/10159347/participants?phone&[email protected]&externalId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab&pushRegistrationId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab");
client.Timeout =
-1;
var request =
new RestRequest(Method.POST);
request.AddHeader(
"Authorization",
"{authorization}");
request.AddHeader(
"Content-Type",
"application/json");
request.AddHeader(
"Accept",
"application/json");
var body =
@"{""personData"":{""externalId"":""1"",""firstName"":""Jane"",""lastName"":""Smith"",""address"":""67 Farringdon Road"",""city"":""London"",""country"":""United Kingdom"",""gender"":""FEMALE"",""birthDate"":""1966-01-15"",""middleName"":""Janie"",""profilePicture"":""http://profile.com"",""tags"":[""VIP Customers"",""New Customers""],""customAttributes"":{""Contract Expiry"":""2018-06-01"",""Company"":""Acme""},""contactInformation"":{""phone"":[{""number"":""41793026727""},{""number"":""41793026728""}],""email"":[{""address"":""[email protected]""},{""address"":""[email protected]""}]}},""flowVariables"":{""orderDate"":""2021-09-01"",""orderDetails"":""Extended Weight, Discount"",""orderNumber"":1234567}}";
request.AddParameter(
"application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
2
3
4
5
6
7
8
9
10
11
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
<code>url :=
"https://%7BbaseUrl%7D/communication/1/flows/10159347/participants?phone&[email protected]&externalId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab&pushRegistrationId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab" method :=
"POST" payload := strings.NewReader(
`{"personData":{"externalId":"1","firstName":"Jane","lastName":"Smith","address":"67 Farringdon Road","city":"London","country":"United Kingdom","gender":"FEMALE","birthDate":"1966-01-15","middleName":"Janie","profilePicture":"http://profile.com","tags":["VIP Customers","New Customers"],"customAttributes":{"Contract Expiry":"2018-06-01","Company":"Acme"},"contactInformation":{"phone":[{"number":"41793026727"},{"number":"41793026728"}],"email":[{"address":"[email protected]"},{"address":"[email protected]"}]}},"flowVariables":{"orderDate":"2021-09-01","orderDetails":"Extended Weight, Discount","orderNumber":1234567}}`) client := &http.Client { } req, err := http.NewRequest(method, url, payload)
if err !=
nil { fmt.Println(err)
return } req.Header.Add(
"Authorization",
"{authorization}") req.Header.Add(
"Content-Type",
"application/json") req.Header.Add(
"Accept",
"application/json") res, err := client.Do(req)
if err !=
nil { fmt.Println(err)
return }
defer res.Body.Close() body, err := ioutil.ReadAll(res.Body)
if err !=
nil { fmt.Println(err)
return } fmt.Println(
string(body))</code>
}
2
3
4
5
6
7
8
9
10
11
import http.client
import json
conn = http.client.HTTPSConnection(
"{baseUrl}")
payload = json.dumps({
"personData": {
"externalId":
"1",
"firstName":
"Jane",
"lastName":
"Smith",
"address":
"67 Farringdon Road",
"city":
"London",
"country":
"United Kingdom",
"gender":
"FEMALE",
"birthDate":
"1966-01-15",
"middleName":
"Janie",
"profilePicture":
"http://profile.com",
"tags": [
"VIP Customers",
"New Customers"
],
"customAttributes": {
"Contract Expiry":
"2018-06-01",
"Company":
"Acme"
},
"contactInformation": {
"phone": [
{
"number":
"41793026727"
},
{
"number":
"41793026728"
}
],
"email": [
{
"address":
"[email protected]"
},
{
"address":
"[email protected]"
}
]
}
},
"flowVariables": {
"orderDate":
"2021-09-01",
"orderDetails":
"Extended Weight, Discount",
"orderNumber":
1234567
}
})
headers = {
'Authorization':
'{authorization}',
'Content-Type':
'application/json',
'Accept':
'application/json'
}
conn.request(
"POST",
"/communication/1/flows/10159347/participants?phone=null&[email protected]&externalId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab&pushRegistrationId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode(
"utf-8"))
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require "uri"
require "json"
require "net/http"
url =
URI(
"https://{baseUrl}/communication/1/flows/10159347/participants?phone&[email protected]&externalId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab&pushRegistrationId=8edb24b5-0319-48cd-a1d9-1e8bc5d577ab")
https =
Net::HTTP.new(url.host, url.port)
https.use_ssl =
true
request =
Net::HTTP::Post.new(url)
request[
"Authorization"] =
"{authorization}"
request[
"Content-Type"] =
"application/json"
request[
"Accept"] =
"application/json"
request.body =
JSON.dump({
"personData": {
"externalId":
"1",
"firstName":
"Jane",
"lastName":
"Smith",
"address":
"67 Farringdon Road",
"city":
"London",
"country":
"United Kingdom",
"gender":
"FEMALE",
"birthDate":
"1966-01-15",
"middleName":
"Janie",
"profilePicture":
"http://profile.com",
"tags": [
"VIP Customers",
"New Customers"
],
"customAttributes": {
"Contract Expiry":
"2018-06-01",
"Company":
"Acme"
},
"contactInformation": {
"phone": [
{
"number":
"41793026727"
},
{
"number":
"41793026728"
}
],
"email": [
{
"address":
"[email protected]"
},
{
"address":
"[email protected]"
}
]
}
},
"flowVariables": {
"orderDate":
"2021-09-01",
"orderDetails":
"Extended Weight, Discount",
"orderNumber":
1234567
}
})
response = https.request(request)
puts response.read_body
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
유연하고 포괄적인 API로 최적의 영업 솔루션을 구축하세요. 비즈니스 성장에 따라 확장하고, 더 많은 채널을 추가하며, 더 많은 고객을 지원할 수 있습니다.
다양한 통합 옵션을 통해 기존 플랫폼과 연계하여 효율적인 영업 인프라를 구축하세요.
당사의 옴니채널 커뮤니케이션 솔루션을 통해 기업이 영업 사이클을 가속화하고, 고객 서비스를 확장하며, 교차 판매 및 업셀링 기회를 성장시킬 수 있도록 지원합니다.
업계 선도적인 전문성을 바탕으로, 글로벌 네트워크를 통해 탁월한 고객 경험을 제공할 수 있습니다.
가장 높은 전송률을 달성하고, 안전한 플랫폼에서 메시지를 확장하여 비즈니스 성장을 지원합니다.
800개 이상의 직접 운영자 연결을 통해 전 세계 어디에서나 신뢰할 수 있는 메시징과 다양한 사용 사례를 지원합니다.
전 세계 데이터 센터를 통해 원활하고 효율적인 운영을 지원합니다.
전 세계 어디에서든 현지 규정을 준수하며 메시지를 전송할 수 있습니다.
글로벌 경험과 현지 존재감을 바탕으로 최상의 서비스와 솔루션을 제공합니다.
전문 서비스와 함께 언제든지 지원 및 네트워크 모니터링을 제공합니다.
영업 자동화로 리드 생성 증가, 교차 판매 및 업셀링 기회 확대, 그리고 옴니채널 판매 솔루션 활용.