Name |
Type |
Description |
Notes |
name |
str |
|
[optional] |
max_retry |
int |
How many times call should be retried if not picked up |
[optional] |
phone_number |
int |
PhoneNumber foreign key |
[optional] |
type |
str |
Type of campaign |
[optional] |
transaction_template |
str |
Template text with variable placeholders, where variables are represented like `{var1}`. Only required for `transactional` campaigns. |
[optional] |
script |
int |
Script id, Can be found from the Script Listing API. This is the GenAI prompt telling the bot how to behave when asked a question or how to continue the conversation. |
[optional] |
voice |
int |
Voice id. Can be found from the Voice Listing API. Head over to Voice Garden by Callchimp for samples. |
[optional] |
from callchimp.models.campaign_update_request import CampaignUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CampaignUpdateRequest from a JSON string
campaign_update_request_instance = CampaignUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(CampaignUpdateRequest.to_json())
# convert the object into a dict
campaign_update_request_dict = campaign_update_request_instance.to_dict()
# create an instance of CampaignUpdateRequest from a dict
campaign_update_request_from_dict = CampaignUpdateRequest.from_dict(campaign_update_request_dict)
[Back to Model list] [Back to API list] [Back to README]