GetPostbackSettingsForLicenseKey
Revision as of 15:31, 12 October 2017 by imported>Bdriggers (→VB.Net)
JSON
http://messaging.cdyne.com/Messaging.svc/GetPostbackSettingsForLicenseKey?LicenseKey=f01d89fd-5155-5455-5585-e84ab8de8591
C#
/*http://messaging.cdyne.com/Messaging.svc?wsdl was added as Service Reference and given the name WSDL*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GetPostbackSettingsForLicenseKey.WSDL;
namespace GetPostbackSettingsForLicenseKey
{
class Program
{
static void Main(string[] args)
{
MessagingClient client = new MessagingClient("mms2wsHttpBinding");
Array resp = client.GetPostbackSettingsForLicenseKey(new Guid("f01d89fd-5155-5455-5585-e84ab8de8591"));
if (resp.Length > 0)
{
foreach (WSDL.PostbackSettingsResponse item in resp)
Console.WriteLine("Country: " + item.Country + Environment.NewLine +
"Phone Number: " + item.PhoneNumber + Environment.NewLine +
"Postback Enabled: " + item.PostbackEnabled + Environment.NewLine +
"Postback Type: " + item.PostbackType + Environment.NewLine +
"Postback URL: " + item.PostbackUrl + Environment.NewLine +
"Return Code: " + item.ReturnCode + Environment.NewLine + Environment.NewLine);
Console.ReadLine();
}
}
}
}
VB.Net
'http://messaging.cdyne.com/Messaging.svc?wsdl was added as Service Reference and given the name WSDL
Imports GetPostbackSettingsForLicenseKey.WSDL
Module Module1
Sub Main()
Dim client As WSDL.MessagingClient = New MessagingClient("mms2wsHttpBinding")
Dim resp As Array = client.GetPostbackSettingsForLicenseKey(New Guid("f01d89fd-5155-5455-5585-e84ab8de8591"))
If resp.Length > 0 Then
For Each item As WSDL.PostbackSettingsResponse In resp
Console.WriteLine("Country: " + Convert.ToString(item.Country) + Environment.NewLine +
"Phone Number: " + Convert.ToString(item.PhoneNumber) + Environment.NewLine +
"Postback Enabled: " + Convert.ToString(item.PostbackEnabled) + Environment.NewLine +
"Postback Type: " + Convert.ToString(item.PostbackType) + Environment.NewLine +
"Postback URL: " + Convert.ToString(item.PostbackUrl) + Environment.NewLine +
"Return Code: " + Convert.ToString(item.ReturnCode) + Environment.NewLine + Environment.NewLine)
Next
Console.ReadLine()
End If
End Sub
End Module