Method 1502 Reporting

1502 Reporting attempts to input one or more report(s) in a structured format.

Service Name XML JSON
reportupload Ver 1.0 Ver 1.0

XML formatted example:

Go Back

<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="reportupload"> <xs:complexType> <xs:sequence> <xs:element name="creds"> <xs:complexType> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute type="xs:string" name="MethodNamePhysical"/> <xs:attribute type="xs:string" name="CLSUsername"/> <xs:attribute type="xs:string" name="CLSPassword"/> <xs:attribute type="xs:string" name="CLSPIN"/> <xs:attribute type="xs:string" name="EMail"/> <xs:attribute type="xs:string" name="SoftwareVendorCode"/> <xs:attribute type="xs:string" name="SoftwareVendorName"/> <xs:attribute type="xs:string" name="ErrTyp"/> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:element> <xs:element name="items"> <xs:complexType> <xs:sequence> <xs:element name="item" maxOccurs="unbounded" minOccurs="0"> <xs:complexType> <xs:sequence> <xs:element type="xs:string" name="SBALoan"/> <xs:element type="xs:string" name="LndrAcctNum"/> <xs:element type="xs:string" name="NextDueDate"/> <xs:element type="xs:string" name="status"/> <xs:element type="xs:string" name="AmtDisbursed"/> <xs:element type="xs:string" name="AmtUndisbursed"/> <xs:element type="xs:string" name="IntRate"/> <xs:element type="xs:string" name="GuarIntAmt"/> <xs:element type="xs:string" name="GuarPrinAmt"/> <xs:element type="xs:string" name="AmtRemittedFta"/> <xs:element type="xs:string" name="IntFrom"/> <xs:element type="xs:string" name="IntTo"/> <xs:element type="xs:string" name="IntDays"/> <xs:element type="xs:string" name="IntBasis"/> <xs:element type="xs:string" name="GuarClosing"/> <xs:element type="xs:string" name="PenaltyAmt"/> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> <xs:attribute type="xs:byte" name="id"/> </xs:complexType> </xs:element> </xs:schema>

JSON formatted example:

Go Back

{ "reportupload": { "MethodNamePhysical": " string ", "CLSUsername": " string ", "CLSPassword": " string ", "CLSPIN": " string ", "EMail": " string ", "SoftwareVendorCode": " string ", "SoftwareVendorName": " string ", "ErrTyp": " string ", "items": { "item": [ { "SBALoan": " string ", "LndrAcctNum": " string ", "NextDueDate": " date ", "status": " string ", "AmtDisbursed": " decimal ", "AmtUndisbursed": " decimal ", "IntRate": " decimal ", "GuarIntAmt": " decimal ", "GuarPrinAmt": " decimal ", "AmtRemittedFta": " integer ", "IntFrom": " date ", "IntTo": " date ", "IntDays": " integer ", "IntBasis": " decimal ", "GuarClosing": " integer ", "PenaltyAmt": " decimal " }, { "SBALoan": " string ", "LndrAcctNum": " string ", "NextDueDate": " date ", "status": " string ", "AmtDisbursed": " decimal ", "AmtUndisbursed": " decimal ", "IntRate": " decimal ", "GuarIntAmt": " decimal ", "GuarPrinAmt": " decimal ", "AmtRemittedFta": " integer ", "IntFrom": " date ", "IntTo": " date ", "IntDays": " integer ", "IntBasis": " decimal ", "GuarClosing": " integer ", "PenaltyAmt": " decimal " } ] } } }

SOAP formatted example:

<?xml version = "1.0"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <ResponseHeader> <MethodNamePhysical> string </MethodNamePhysical> <CLSUsername> string </CLSUsername> <CLSPassword> string </CLSPassword> <CLSPIN> string </CLSPIN> <EMail> string </EMail> <SoftwareVendorCode> string </SoftwareVendorCode> <SoftwareVendorName> string </SoftwareVendorName> <ErrTyp> string </ErrTyp> </ResponseHeader> </soap:Header> <soap:Body> <results> <sba_loan_no> string </sba_loan_no> <lndr_acct_num_id> string </lndr_acct_num_id> <next_due_date_id> date </next_due_date_id> <status> string </status> <amt_disbursed> decimal </amt_disbursed> <amt_undisbursed> decimal </amt_undisbursed> <int_rate> decimal </int_rate> <guar_int_amt> decimal </guar_int_amt> <guar_prin_amt> decimal </guar_prin_amt> <amt_remitted_to_fta> integer </amt_remitted_to_fta> <int_from_date> date </int_from_date> <int_to_date> date </int_to_date> <int_days> integer </int_days> <int_basis> decimal </int_basis> <guar_closing_bal> integer </guar_closing_bal> <penalty_amt> decimal </penalty_amt> </results> <results> <sba_loan_no> string </sba_loan_no> <lndr_acct_num_id> string </lndr_acct_num_id> <next_due_date_id> date </next_due_date_id> <status> string </status> <amt_disbursed> decimal </amt_disbursed> <amt_undisbursed> decimal </amt_undisbursed> <int_rate> decimal </int_rate> <guar_int_amt> decimal </guar_int_amt> <guar_prin_amt> decimal </guar_prin_amt> <amt_remitted_to_fta> integer </amt_remitted_to_fta> <int_from_date> date </int_from_date> <int_to_date> date </int_to_date> <int_days> integer </int_days> <int_basis> decimal </int_basis> <guar_closing_bal> integer </guar_closing_bal> <penalty_amt> decimal </penalty_amt> </results> </soap:Body> </soap:Envelope>