POST xml/load
Request Information
URI Parameters
None.
Body Parameters
XmlReadData| Name | Description | Type | Additional information | 
|---|---|---|---|
| UserName | string | None. | |
| Password | string | None. | |
| IpAddress | string | None. | |
| XmlMessage | string | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "userName": "sample string 1",
  "password": "sample string 2",
  "ipAddress": "sample string 3",
  "xmlMessage": "sample string 4"
}
        text/html
            Sample:
        
{"userName":"sample string 1","password":"sample string 2","ipAddress":"sample string 3","xmlMessage":"sample string 4"}
        application/xml, text/xml
            Sample:
        <XmlReadData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ops.Data.ProcessManager.XmlIntegration"> <IpAddress>sample string 3</IpAddress> <Password>sample string 2</Password> <UserName>sample string 1</UserName> <XmlMessage>sample string 4</XmlMessage> </XmlReadData>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json, text/html
            Sample:
        "sample string 1"
application/xml, text/xml
            Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>