Editing SIP Settings (FF240-IP only)

Requires FaxFinder 3.0.4 or higher.

HTTP Request Line

PUT /ffws/v1/sip HTTP/1.1

HTTP Response Status Codes

200 OK

SIP setting successfully changed.

400 Bad Request

The provided XML is not valid.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
PUT /ffws/v1/sip HTTP/1.1
content-type: application/xml
authorization: Basic YWRtaW46YWRtaW4=
<?xml version=”1.0” encoding=”UTF-8”?>
    <sip>
        <local_port>5060</local_port>
        <sip_proxy_gateway>172.16.0.10</sip_proxy_gateway>
        <sip_proxy_port>5060</sip_proxy_port>
        <sip_domain></sip_domain>
        <firewall></firewall>
        <auth_required>false</auth_required>
        <username></username>
        <password></password>
        <use_registrar>false</use_registrar>
        <registrar></registrar>
        <registrar_port></registrar_port>
        <expires></expires>
    </sip>
-----------------------------------
HTTP/1.1 200 OK
content-type: application/xml
<?xml version=”1.0” encoding=”UTF-8”?>
<response>
    <message>Modified</message>
</response>