The response to the DMS Import method gives the user a confirmation that the job has been imported, and that this has been successful. If this has been successful, the method will return the below code (The JobID node would change with each successful job):

<PushJobResponse xmlns="http://www.wsautovhc.co.uk">
	<PushJobResult>
		<Message xmlns="http://autovhc.co.uk/">Successful Import</Message>
		<JobID xmlns="http://autovhc.co.uk/">123456789</JobID>
		<Success xmlns="http://autovhc.co.uk/">true</Success>
	</PushJobResult>
</PushJobResponse>


If an import has been unsuccessful, then the method would return the below code:

<PushJobResponse xmlns="http://www.wsautovhc.co.uk">
	<PushJobResult>
		<Message xmlns="http://autovhc.co.uk/">Unauthorized</Message>
		<JobID xmlns="http://autovhc.co.uk/">0</JobID>
		<Success xmlns="http://autovhc.co.uk/">false</Success>
	</PushJobResult>
</PushJobResponse>