This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PaymentSearchForQuotesResult paymentSearchForQuotesResult; | |
using(var client = new FinanceClient()) | |
{ | |
paymentSearchForQuotesResult = client.PaymentSearchForQuotes( | |
new LoginCredentials() {Username = "YOUR_USERNAME", Password = "YOUR_PASSWORD"}, | |
new PaymentSearchRequest() | |
{ | |
MaximumTerm = 48, | |
TotalDeposit = 500, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CalculationResults calculationResults; | |
using (var client = new FinanceClient()) | |
{ | |
calculationResults = client.Calculate( | |
new LoginCredentials() { Username = "YOUR_USERNAME", Password = "YOUR_PASSWORD" }, | |
new Parameters() | |
{ | |
AnnualMileage = 10000, | |
DepositType = DepositType.Amount, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="http://www.paymentsearch.co.uk/<your_username>" method="POST"> | |
<label for="TotalDeposit">Total Deposit</label> | |
<input id="TotalDeposit" name="TotalDeposit" title="Deposit" type="text" value="500" /> | |
<label for="Term">Term</label> | |
<select id="Term" name="Term" title="term"> | |
<option value="24">24</option> | |
<option value="25">25</option> | |
<option value="26">26</option> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Content-Type: text/xml; charset=utf-8 | |
Content-Length: length | |
SOAPAction: "http://www.codeweavers.net/webservices/TransferProposal" | |
--> | |
<?xml version="1.0" encoding="utf-8"?> | |
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fin="http://www.codeweavers.net/webservices_3.0/StatusUpdate/"> | |
<soapenv:Header/> | |
<soapenv:Body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
HTTP/1.1 200 OK | |
Content-Type: text/xml; charset=utf-8 | |
Content-Length: length | |
--> | |
<?xml version="1.0" encoding="utf-8"?> | |
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> | |
<soap:Body> | |
<ProposalStatusUpdateResponse> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ProposalStatusUpdate> | |
<ProposalReference>CALLERS_PROPOSAL_REFERENCE</ProposalReference> | |
<Status>Status</Status> | |
<Note>A note from the lender</Note> | |
</ProposalStatusUpdate> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ProposalTransfer xmlns="http://www.codeweavers.net/webservices"> | |
<!-- Action is an optional element --> | |
<Action> | |
<Method>Submit</Method> | |
<Id createdBy="dealer">CALLERS_PROPOSAL_REFERENCE</Id> | |
</Action> | |
<!-- Other XML elements as normal --> | |
</ProposalTransfer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ProposalTransfer xmlns="http://www.codeweavers.net/webservices"> | |
<IndividualApplicant> | |
<!-- XML as per Basic Request example --> | |
<Address> | |
<!-- XML as per Basic Request example --> | |
</Address> | |
<Type>Primary</Type> | |
<Employment> | |
<!-- XML as per Basic Request example --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Employment OrderNumber="1"> | |
<Occupation>Accountant</Occupation> | |
<Basis>Full time</Basis> | |
<Category>Finance/Banking</Category> | |
<EmployerName>Original Codeweavers</EmployerName> | |
<Years>1</Years> | |
<Months>2</Months> | |
<Address> | |
<Number>100</Number> | |
<Street>Codeweavers Lane</Street> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Address OrderNumber="1"> | |
<Number>100</Number> | |
<Street>Codeweavers Lane</Street> | |
<CityTown>Stoke-on-Trent</CityTown> | |
<County>Staffordshire</County> | |
<PostCode>ST1 1AB</PostCode> | |
<Years>1</Years> | |
<Months>6</Months> | |
<Tenure>Unfurnished Tenant</Tenure> | |
</Address> |