Create
API này dùng để tạo chiến dịch.
curl --location 'https://{{base_url}}/v3/campaign' \
--header 'Content-type: application/json' \
--header 'Authorization: Bearer {{token}}' \
--data '{
"campaign_name": "VoiceOTP",
"type": "autocall",
"concurrent_call": 1,
"template_uuid": "",
"description": "",
"type_autocall": "autocall_voice_tts"
}'
Response trả về:
{
"campaign_uuid": "avavavav-1111-2222-3333-eeeeeeee",
"created": true
}
Error Response trả về:
{
"error": "campaign_name is already taken"
}
{
"error": [
{
"type": "type must be one of the following: \"autodialer\", \"autocall\", \"inbound\", \"manual\""
}
]
}
HTTP Request
POST https://{{base_url}}/v3/campaign
Body
Sample data:
{
"campaign_name": "autocall_campaign",
"concurrent_call": 2
}
Parameter | Description | Required |
---|---|---|
campaign_name | Tên chiến dịch | x |
concurrent_call | Số lượng cuộc gọi đồng thời | |
type | Loại chiến dich, bao gồm autodialer, autocall, inbound, manual | x |
type_autocall | Loại chiến dịch autocall, bao gồm autocall_voice_tts, autocall_audio va autocall_voice_otp |