Skip to content

Instantly share code, notes, and snippets.

@dtolb
Created January 22, 2016 21:46
Show Gist options
  • Save dtolb/2a1122b66b6d22bafcbf to your computer and use it in GitHub Desktop.
Save dtolb/2a1122b66b6d22bafcbf to your computer and use it in GitHub Desktop.
Create outbound call
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