Webservices
GetClaimCountReconciliation
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /v3/webservices.asmx HTTP/1.1 Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "https://www.shafafiya.org/v2/GetClaimCountReconciliation" <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="https://www.shafafiya.org/v2/"> <soapenv:Header/> <soapenv:Body> <v2:GetClaimCountReconciliation> <v2:login>string</v2:login> <v2:pwd>string</v2:pwd> <v2:transactionName>string</v2:transactionName> <v2:transactionDate>string</v2:transactionDate> </v2:GetClaimCountReconciliation> </soapenv:Body> </soapenv:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="https://www.shafafiya.org/v2/"> <soapenv:Header/> <soapenv:Body> <v2:GetClaimCountReconciliationResponse> <v2:GetClaimCountReconciliationResult>int</v2:GetClaimCountReconciliationResult> <v2:errorMessage>string</v2:errorMessage> <v2:ClaimCountReconciliationReport> <v2:senderID>string</v2:senderID> <v2:receiverID>string</v2:receiverID> <v2:uploadCount>int</v2:uploadCount> <v2:downloadCount>int</v2:downloadCount> </v2:ClaimCountReconciliationReport> </v2:GetClaimCountReconciliationResponse> </soapenv:Body> </soapenv:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /v3/webservices.asmx HTTP/1.1 Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:v2="https://www.shafafiya.org/v2/"> <soap:Header/> <soap:Body> <v2:GetClaimCountReconciliation> <v2:login>string</v2:login> <v2:pwd>string</v2:pwd> <v2:transactionName>string</v2:transactionName> <v2:transactionDate>string</v2:transactionDate> </v2:GetClaimCountReconciliation> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:v2="https://www.shafafiya.org/v2/"> <soap:Header/> <soap:Body> <v2:GetClaimCountReconciliationResponse> <v2:GetClaimCountReconciliationResult>int</v2:GetClaimCountReconciliationResult> <v2:errorMessage>string</v2:errorMessage> <v2:ClaimCountReconciliationReport> <v2:senderID>string</v2:senderID> <v2:receiverID>string</v2:receiverID> <v2:uploadCount>int</v2:uploadCount> <v2:downloadCount>int</v2:downloadCount> </v2:ClaimCountReconciliationReport> </v2:GetClaimCountReconciliationResponse> </soap:Body> </soap:Envelope>