Updating Customer Confirmation Numbers
Introduction
Posting to SecurityTrax is done via raw http post. In order to perform this action you will need the following information:
URL |
|
Partner ID |
This is the unique ID that SecurityTrax assigns to the partner company. Source ID Provided by the company using SecurityTrax. |
Username |
Set by company using SecurityTrax. Provided by them. |
Password |
Set by company using SecurityTrax. Provided by them. |
SecurityTraxUniqueID |
The unique SecurityTrax ID of the customer you wish to update. |
ConfirmationNumber |
The value to be set for the confirmation number. |
Address Information |
Sample Request
The following is an example of a valid request.
<?xml version='1.0'?> <root> <requests> <request type='GetSystemAuthentication'> <attribute name='Username'>Username</attribute> <attribute name='Password'>Password</attribute> <attribute name='PartnerID'>1</attribute> </request> <request type="UpdateConfirmationNumberBySecurityTraxUniqueID"> <attribute name='SecurityTraxUniqueID'>206</attribute> <attribute name='ConfirmationNumber'>8887771234</attribute> </request> </requests> </root>
Sample Response
The following is an example of a successful response.
<root> <responses> <response type="GetSystemAuthentication" success="true"> <data> <message>Authenticated To System</message> </data> </response> <response type="UpdateConfirmationNumberBySecurityTraxUniqueID" success="true"> <data> <message>Successfully set customer Receiver Number: 206</message> </data> </response> </responses> </root>