SOAP API - XMLImport
SOAP API - XMLImport
XMLImport( xml ) : String[]
Since: EngageIP v25.2
Imports EngageIP XML data and returns a list of results
The results of the method call will be log in the form of an array of strings which contain the import results. More information on importing XML data and the expected data formats can be found in the data import documentation.
Parameters:
xml (String) - The data definitions to import into the system
Returns:
An array of strings
Possible Exceptions:
INVALID XML
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 /adminportal/webservice.asmx HTTP/1.1
Host: demo.logisense.com
Content-Type: application/soap+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:Header>
<AuthHeader xmlns="Logisense_EngageIP">
<Username>string</Username>
<Password>string</Password>
</AuthHeader>
</soap12:Header>
<soap12:Body>
<XMLImport xmlns="Logisense_EngageIP">
<xml>string</xml>
</XMLImport>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+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>
<XMLImportResponse xmlns="Logisense_EngageIP">
<XMLImportResult>boolean</XMLImportResult>
<log>
<string>string</string>
<string>string</string>
</log>
</XMLImportResponse>
</soap12:Body>
</soap12:Envelope>
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 /adminportal/webservice.asmx HTTP/1.1
Host: demo.logisense.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "Logisense_EngageIP/XMLImport"
<?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:Header>
<AuthHeader xmlns="Logisense_EngageIP">
<Username>string</Username>
<Password>string</Password>
</AuthHeader>
</soap:Header>
<soap:Body>
<XMLImport xmlns="Logisense_EngageIP">
<xml>string</xml>
</XMLImport>
</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>
<XMLImportResponse xmlns="Logisense_EngageIP">
<XMLImportResult>boolean</XMLImportResult>
<log>
<string>string</string>
<string>string</string>
</log>
</XMLImportResponse>
</soap:Body>
</soap:Envelope>
, multiple selections available,
Related content
PHP SOAP Client
PHP SOAP Client
More like this
SOAP API - GetCountryID
SOAP API - GetCountryID
More like this
SOAP API - GetUserBalance
SOAP API - GetUserBalance
More like this
SOAP API - GetBillingContact
SOAP API - GetBillingContact
More like this
SOAP API - GetUserDefaultPaymentMethod
SOAP API - GetUserDefaultPaymentMethod
More like this
SOAP API – AddOrUpdateComponentToService
SOAP API – AddOrUpdateComponentToService
More like this