Change the status of a number

Description

Suspend a number from receiving calls. This will turn the number off on the switch, but keep the number allocated to your account. Please also see UnSuspend.

Parameters

string NumberThe number which is to be suspended.

Request

<?xml version="1.0"?>
<NoveroRequest>
    <Request target="NoveroNumbers" name="Suspend" id="TestRequest">
        <Number>01245123456</Number>
    </Request>
</NoveroRequest>
<?php
    require_once('TTNCApi.php');
    $Api = new TTNCApi('<username>', '<password>', '<VKey>');
    $Request = $Api->NewRequest('NoveroNumbers', 'Suspend', 'TestRequest');
    $Request->SetData('Number', '01245123456');
    $Api->MakeRequests();
    $Response = $Api->GetResponseFromId('TestRequest');
?>
require TTNCApi
api = TTNCApi.new('<username>', '<password>', '<vkey>')
request = api.newrequest('NoveroNumbers', 'Suspend', 'TestRequest')
request.setdata('Number', '01245123456')
api.makerequest()
p request.getresponse()
api = TTNCApi('<username>', '<password>', '<vkey>')
request = api.newrequest('NoveroNumbers', 'Suspend', '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", "Suspend", "TestRequest");
        request.setData("Number", "01245123456");
        api.MakeRequests();
        TTNCParser dic = request.GetResponse();
     }
}

Response

<?xml version="1.0"?>
<NoveroResponse>
    <Response target="NoveroNumbers" name="Suspend" Code="200" RequestId="TestRequest">
        <ResponseMessage>This number has been suspended. Please note, this number will no longer receive calls while it is suspended.</ResponseMessage>
        <Success>This number has been suspended. Please note, this number will no longer receive calls while it is suspended.</Success>
    </Response>
</NoveroResponse>