Content

Page tree

I bought a D865 phone and wanted to load all my phone numbers into the phonebook using an XML file. 
So far I have not been able to load the entries so that the number_type is displayed correctly in the phone. This means that the values set for number_type like “home”, ‘business’ etc. are somehow ignored and the value “SIP” is displayed on the phone. 

Even the XML example from Phone Manger does not work. 

Is there a way to load the entries properly using an XML file?


profilePicture

Uwe Keck

End user

Joined: 22.07.2025

1 Comment

  1. End user Uwe Keck

    I was finally successful!
    It did not work with the tags I found in the SNOM documentation. But it did work by using the values
        "business", "mobile" and fixed"
    for type. See attached example: 

    <?xml version="1.0" encoding="UTF8" ?>

    <tbook e="2" version="2.0" complete="true">    

       <contact fav="false" vip="false" blocked="false"><first_name>John</first_name><last_name>Doe business</last_name><email></email><source_id>1</source_id><numbers><number type="business" outgoing_id="0" no="07319898987"/> </numbers></contact>

       <contact fav="false" vip="false" blocked="false"><first_name>Jane</first_name><last_name>Doe mobile</last_name><email></email><source_id>1</source_id><numbers><number type="mobile" outgoing_id="0" no="016399887766"/> </numbers></contact>

       <contact fav="false" vip="false" blocked="false"><first_name>Donald</first_name><last_name>Doe home</last_name><email></email><source_id>1</source_id><numbers><number type="fixed" outgoing_id="0" no="08876543210"/> </numbers></contact>

       <contact fav="false" vip="false" blocked="false"><first_name>Arnold</first_name><last_name>Doe two numbers</last_name><email></email><source_id>1</source_id><numbers><number type="business" outgoing_id="0" no="079929735284"/> <number type="mobile" outgoing_id="0"  no="016745678901"/></numbers></contact>   

    </tbook>