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: gallifrey.studebakersubmetering.com
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>
<GetNonCollectableReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SSIAccountServices.Api.Reports.Requests">
<RequestIpAddress xmlns="http://schemas.datacontract.org/2004/07/SSIAccountServices.Api.Common.Requests">String</RequestIpAddress>
<Token xmlns="http://schemas.datacontract.org/2004/07/SSIAccountServices.Api.Common.Requests">String</Token>
<CycleId>0</CycleId>
<PropertyId>0</PropertyId>
</GetNonCollectableReport>
</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>
<GetNonCollectableReportResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SSIAccountServices.Api.Reports.Responses">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ABS.Interfaces">
<d2p1:BillingCycleId>0</d2p1:BillingCycleId>
<d2p1:BillingCycleName>String</d2p1:BillingCycleName>
<d2p1:GrossPotentialCollection>0</d2p1:GrossPotentialCollection>
<d2p1:InvoicedFees>
<d2p1:CollectionSummaryInvoicedFee>
<d2p1:FeeName>String</d2p1:FeeName>
<d2p1:TotalDollarAmount>0</d2p1:TotalDollarAmount>
</d2p1:CollectionSummaryInvoicedFee>
</d2p1:InvoicedFees>
<d2p1:InvoicedServices>
<d2p1:CollectionSummaryInvoicedService>
<d2p1:AverageAmount>0</d2p1:AverageAmount>
<d2p1:AverageUsage>0</d2p1:AverageUsage>
<d2p1:InvoiceCount>0</d2p1:InvoiceCount>
<d2p1:ServiceName>String</d2p1:ServiceName>
<d2p1:TotalDollarAmount>0</d2p1:TotalDollarAmount>
<d2p1:UnitOfMeasure>String</d2p1:UnitOfMeasure>
</d2p1:CollectionSummaryInvoicedService>
</d2p1:InvoicedServices>
<d2p1:TotalDollarCorporateOrExempt>0</d2p1:TotalDollarCorporateOrExempt>
</Data>
<History xmlns:d2p1="http://schemas.datacontract.org/2004/07/ABS.Interfaces">
<d2p1:NonCollectionSummaryHistoryItem>
<d2p1:Date>0001-01-01T00:00:00</d2p1:Date>
<d2p1:FeesBilled>0</d2p1:FeesBilled>
<d2p1:MonthName>String</d2p1:MonthName>
<d2p1:TotalBilled>0</d2p1:TotalBilled>
</d2p1:NonCollectionSummaryHistoryItem>
</History>
</GetNonCollectableReportResponse>
</soap12:Body>
</soap12:Envelope>