API & DOCS

My Account            

API used to disable SMS on a DialogTech tracking number

Use the SMS Unregister Number API to disable SMS

The SMS Un-Register Number API is used to disable SMS functionality for a tracking number within a DialogTech account.

📘

Base URL for SMS Unregister Number

https://secure.dialogtech.com/ibp_api.php

Parameter List

ParameterRequiredAcceptsMax LengthNotesUsage
actionYesString: sms.unregister_numbern/aOnly accepts sms.unregister_number to disable SMSDefines the API Call as "SMS Unregister Number" type
access_keyYesStringn/aAccess Key from the Key Manager within a DialogTech accountCredentials used for access to the API for a particular DialogTech account
secret_access_keyYesStringn/aSecret Access Key from the Key Manager within a DialogTech accountCredentials used for access to the API for a particular DialogTech account
numberYesString: Unformatted Phone Number10Local phone number* from within a DialogTech account which is SMS enabledDefines which phone number is being disabled for SMS

*Tollfree SMS is available by contacting your account manager or by reaching out to DialogTech's Customer Support Team.

Using this API

These code examples are meant to show a basic method of using DialogTech's SMS Unregister Number API

<?php

https://secure.dialogtech.com/ibp_api.php?access_key=ACCESS_KEY&secret_access_key=SECRET_ACCESS_KEY&action=sms.unregister_number&number=5556667777

?>
curl -X ""

Example Response

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE response [
<!ELEMENT response (result,result_description)>
<!ELEMENT result (#PCDATA)>
<!ELEMENT result_description (#PCDATA)>
]>
<response>
    <result>success</result>
    <result_description>[5556667777] Unregistered</result_description>
</response>