Submit File Method
If you're looking to start a new integration please see our REST documentation.
Submit XML file to the server.
SOAP
The following is a sample SOAP request and response. The placeholders shown need to be replaced with actual values.
For example, the file type should be a number.
- 1 for Demographic
- 2 for Funding File
- 3 for Both Demographic and Funding
- 4 for DDU (gift cheque)
POST /aeis/dXML/5.0/AEISStandardOrder.wsdl HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://portico.intelispend.com/aeis/msg/service/soap"
<?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>
<AEISsubmitFileRequest xmlns="http://www.comergent.com/webservices/" xmlns:tns="http://www.comergent.com/webservices/">
<_UserName>string</_UserName>
<_Password>string</_Password>
<_Data>string</_Data>
<_FileFormat>1</_FileFormat>
<_FileType>1 or 2 or 3 or 4</_FileType>
<_QuoteID>string</_QuoteID>
</AEISsubmitFileRequest>
</soap:Body>
</soap:Envelope>
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>
<dXML xmlns="http://www.comergent.com/webservices/" xmlns:tns="http://www.comergent.com/webservices/">
<Response>
<SUCCESS>File was successfully Processed and is pending GPP transmission. Your order # is 10011111.</SUCCESS>
</Response>
</dXML>
</soap:Body>
</soap:Envelope>
Updated 4 months ago