🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
다수의 발신 작업을 포함하는 캠페인을 생성합니다.
curl --request POST \
--url https://client-api.tryvox.co/v2/campaigns \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_id": "550e8400-e29b-41d4-a716-446655440000",
"agent_version": "production",
"call_from": "01012345678",
"call_time_window": {
"auto_resume": true,
"timezone": "Asia/Seoul",
"windows": [
{
"days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"end_min": 720,
"start_min": 540
},
{
"days": [
"Monday",
"Tuesday",
"Wednesday"
],
"end_min": 1200,
"start_min": 780
}
]
},
"concurrency": 10,
"name": "고객 설문 캠페인",
"presentation_number": "01099998888",
"tasks": [
{
"call_to": "01023456789",
"dynamic_variables": {
"name": "홍길동"
},
"metadata": {
"customer_id": "123"
}
},
{
"call_to": "01034567890",
"dynamic_variables": {
"name": "이몽룡"
},
"metadata": {
"customer_id": "456"
}
}
]
}
'{
"active_concurrency": 0,
"agent_id": "550e8400-e29b-41d4-a716-446655440000",
"completed_calls": 0,
"concurrency": 5,
"created_at": "2024-01-15T10:00:00Z",
"failed_calls": 0,
"from_number": "01012345678",
"id": "123",
"name": "고객 설문 캠페인",
"organization_id": "550e8400-e29b-41d4-a716-446655440001",
"presentation_number": "01099998888",
"status": "pending",
"total_calls": 2
}Documentation Index
Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt
Use this file to discover all available pages before exploring further.
API 키를 Authorization: Bearer <API_KEY> 헤더로 전달하세요. 대시보드 설정에서 발급받을 수 있습니다.
새 캠페인 생성 요청 모델
캠페인 이름
발신 번호 (예: 01012345678)
에이전트 ID
실행할 발신 작업 목록
Show child attributes
캠페인 기본 표시 발신번호
사용할 에이전트 버전
예약 실행 시간 (ISO 타임스탬프)
최대 동시 발신 수
1 <= x <= 100통화 허용 시간대 설정 (미입력시 기본값: 08:00~20:00, 매일)
Show child attributes
Successful Response
캠페인 생성 응답 모델 - 전체 캠페인 데이터 반환
draft, pending, ongoing, paused, success, fail, canceled 최대 동시 발신 수
현재 진행 중인 동시 발신 수
통화 허용 시간대 설정
일시정지 원인 (user: 수동, system: 시간대)
user, system Was this page helpful?
curl --request POST \
--url https://client-api.tryvox.co/v2/campaigns \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_id": "550e8400-e29b-41d4-a716-446655440000",
"agent_version": "production",
"call_from": "01012345678",
"call_time_window": {
"auto_resume": true,
"timezone": "Asia/Seoul",
"windows": [
{
"days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"end_min": 720,
"start_min": 540
},
{
"days": [
"Monday",
"Tuesday",
"Wednesday"
],
"end_min": 1200,
"start_min": 780
}
]
},
"concurrency": 10,
"name": "고객 설문 캠페인",
"presentation_number": "01099998888",
"tasks": [
{
"call_to": "01023456789",
"dynamic_variables": {
"name": "홍길동"
},
"metadata": {
"customer_id": "123"
}
},
{
"call_to": "01034567890",
"dynamic_variables": {
"name": "이몽룡"
},
"metadata": {
"customer_id": "456"
}
}
]
}
'{
"active_concurrency": 0,
"agent_id": "550e8400-e29b-41d4-a716-446655440000",
"completed_calls": 0,
"concurrency": 5,
"created_at": "2024-01-15T10:00:00Z",
"failed_calls": 0,
"from_number": "01012345678",
"id": "123",
"name": "고객 설문 캠페인",
"organization_id": "550e8400-e29b-41d4-a716-446655440001",
"presentation_number": "01099998888",
"status": "pending",
"total_calls": 2
}