ListExtensionTypes command

With this command, you can get a list of the available extension types in your system. It is useful for SetConfig and ListExtensions commands to specify the extension type.

Request parameters

Parameter name Example value Description Mandatory
Username admin The username of the account. The username and password parameters are used to authenticate the user. yes
Password abc123 Specifies the password. The username and password parameters are used to authenticate the user. yes

Response parameters

Parameter name Example value Description Mandatory
Code 200 Returns the status code of the response. yes
Message Command successfully executed Returns th description of the response code. yes
ExtensionTypes Returns the available extension types in <Type>extension type<Type> format. yes
NotificationName CallConnected Name of the notification request type. no

Example request and response

URL request

http://127.0.0.1:9509/api?command=ListExtensionTypes&Username=HTTP_User_1&Password=qwe123

Response

>
<?xml version="1.0"?>
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Code>200</Code>
  <Message>Command successfully executed</Message>
  <ExtensionTypes>
    <Type>Phone</Type>
    <Type>Ring group</Type>
    <Type>Call queue</Type>
    <Type>IVR extension</Type>
    <Type>Voicemail</Type>
    <Type>Conference</Type>
    <Type>Echo test</Type>
  </ExtensionTypes>
</Response>

More information