Description
Get the current settings for Missed Call Alert for the specified number.
Parameters
string Number | The TTNC number to get the Missed Call Alert settings for. |
Request
<?xml version="1.0"?>
<NoveroRequest>
<Request target="NoveroNumbers" name="GetMissedCallDestination" id="TestRequest">
<Number>01245123456</Number>
</Request>
</NoveroRequest>
<?php
require_once('TTNCApi.php');
$Api = new TTNCApi('<username>', '<password>', '<VKey>');
$Request = $Api->NewRequest('NoveroNumbers', 'GetMissedCallDestination', 'TestRequest');
$Request->SetData('Number', '01245123456')
$Api->MakeRequests();
$Response = $Api->GetResponseFromId('TestRequest');
?>
require TTNCApi
api = TTNCApi.new('<username>', '<password>', '<vkey>')
request = api.newrequest('NoveroNumbers', 'GetMissedCallDestination', 'TestRequest')
request.setdata('Number', '01245123456')
api.makerequest()
p request.getresponse()
api = TTNCApi('<username>', '<password>', '<vkey>')
request = api.newrequest('NoveroNumbers', 'GetMissedCallDestination', 'TestRequest')
request.setdata('Number', '01245123456')
api.makerequest()
p request.getresponse()
using System;
using TTNCApi;
class Program
{
static void Main(string[] args)
{
TTNCApi api = new TTNCApi("<username>", "<password>", "<vkey>");
TTNCRequest request = api.NewRequest("NoveroNumbers", "GetMissedCallDestination", "TestRequest");
request.setData("Number", "01245123456");
api.MakeRequests();
TTNCParser dic = request.GetResponse();
}
}
Response
<?xml version="1.0"?>
<NoveroResponse>
<Response target="Auth" name="SessionLogin" Code="200" RequestId="SessionRequest">
<SessionId>c3c88fa3a5dc3480261e2f296fbb0bd0</SessionId>
</Response>
<Response target="NoveroNumbers" name="GetMissedCallDestination" Code="200" RequestId="Request1">
<Enabled>true</Enabled>
<MissedCallDestinations>
<MissedCallDestination>
<Destination>[email protected]</Destination>
<Type>Email</Type>
</MissedCallDestination>
<MissedCallDestination>
<Destination>07777000001</Destination>
<Type>SMS</Type>
</MissedCallDestination>
...
</MissedCallDestinations>
</Response>
</NoveroResponse>