You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developers can invoke this API to send voice messages to specific people.
Why is this needed
In the monitoring scenarios, monitor systems need to send alarm messages to people on-call.
The messages might be in different forms, including IM,SMS, Email and phone calls, depending on the level of urgency.
Portability
For example, a monitor system might be deployed on alibaba cloud(using VMS to send voice message) or AWS (using AWS Pinpoint to send voice message). So portability is important here.
serviceIvrService {
//Send voice using the specific templaterpcSendVoiceWithTemplate(SendVoiceWithTemplateRequest) returns (SendVoiceWithTemplateResponse) {}
}
messageSendVoiceWithTemplateRequest{
// RequiredTemplatetemplate=1;
// Requiredstringto_mobile=2;
// This field is required by some cloud providers.stringfrom_mobile=3;
}
messageTemplate{
// Requiredstringtemplate_id=1;
// Requiredmap<string, string> template_params=2;
}
messageSendVoiceWithTemplateResponse{
stringmessage_id=1;
}
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity in the last 30 days. It will be closed in the next 7 days unless it is tagged (pinned, good first issue or help wanted) or other activity occurs. Thank you for your contributions.
What would you like to be added
IVR API, or PhoneCall API
Developers can invoke this API to send voice messages to specific people.
Why is this needed
In the monitoring scenarios, monitor systems need to send alarm messages to people on-call.
The messages might be in different forms, including IM,SMS, Email and phone calls, depending on the level of urgency.
Product research
Detailed Design
We need to consider the following factors:
For example, a monitor system might be deployed on alibaba cloud(using VMS to send voice message) or AWS (using AWS Pinpoint to send voice message). So portability is important here.
The text was updated successfully, but these errors were encountered: