HTTP + SOAP12
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap12 HTTP/1.1
Host: api-preprod.merseyflow.co.uk
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<AnalyzeBulkUploadFile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.ServiceModel">
<AccountId>0</AccountId>
<CSVData>AA==</CSVData>
</AnalyzeBulkUploadFile>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<AnalyzeBulkUploadFileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.ServiceModel">
<BulkVRMs xmlns:d2p1="http://schemas.datacontract.org/2004/07/WebCRMV2.Data.Web.Models">
<d2p1:BulkVRM>
<d2p1:Action>String</d2p1:Action>
<d2p1:Axles>String</d2p1:Axles>
<d2p1:Category>String</d2p1:Category>
<d2p1:Colour>String</d2p1:Colour>
<d2p1:Country>String</d2p1:Country>
<d2p1:ErrorMessage>String</d2p1:ErrorMessage>
<d2p1:HasParseError>false</d2p1:HasParseError>
<d2p1:IsStickerNeeded>false</d2p1:IsStickerNeeded>
<d2p1:IsTagOrder>false</d2p1:IsTagOrder>
<d2p1:IsValid>false</d2p1:IsValid>
<d2p1:Make>String</d2p1:Make>
<d2p1:Model>String</d2p1:Model>
<d2p1:ProductId>0</d2p1:ProductId>
<d2p1:ProgramId>0</d2p1:ProgramId>
<d2p1:StateProvince>String</d2p1:StateProvince>
<d2p1:StickerNumber>String</d2p1:StickerNumber>
<d2p1:VehClassId>0</d2p1:VehClassId>
<d2p1:VehicleRegistration>String</d2p1:VehicleRegistration>
<d2p1:Year>String</d2p1:Year>
</d2p1:BulkVRM>
</BulkVRMs>
<ExpectedAmount>0</ExpectedAmount>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
</d2p1:ResponseError>
</d2p1:Errors>
</ResponseStatus>
</AnalyzeBulkUploadFileResponse>
</soap12:Body>
</soap12:Envelope>