Editing Inbound Routes

Requires FaxFinder 3.0.4 or higher.

HTTP Request Line

PUT /ffws/v1/routes/global HTTP/1.1

PUT /ffws/v1/routes/default HTTP/1.1

PUT /ffws/v1/routes/lines/line_number HTTP/1.1

PUT /ffws/v1/routes/recipient/ID HTTP/1.1

HTTP Response Status Codes

200 OK

Modified successfully.

403 Forbidden

Authenticated user does not have permission to change data.

404 Not Found

Route not found.

400 Bad Request

The provided XML is not valid.

Example

PUT /ffws/v1/routes/global HTTP/1.1 
content-type: application/xml 
authorization: Basic YWRtaW46YWRtaW4= 
<?xml version=”1.0” encoding=”UTF-8”?> 
<global>
	<destination>
		<type>User</type>
		<value>admin</value>
	</destination>
	<destination>
		<type>Email</type>
		<value>newb@mts.test</value>
	</destination>
	<destination>
		<type>Notify</type>
		<value>new_fax@mts.test</value>
	</destination>
</global>