Created
January 22, 2016 21:46
-
-
Save dtolb/2a1122b66b6d22bafcbf to your computer and use it in GitHub Desktop.
Create outbound call
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var c = await Call.Create(Client, new Dictionary<string, object> | |
{ | |
{"from", PhoneNumberForCallbacks}, | |
{"to", call.From}, | |
{"callbackUrl", BaseUrl + Url.Action("CatapultFromCallback")}, | |
{"tag", call.To} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment