Public
Documentation Settings

Easy-IP API

DataAbstractServicePort

POSTGetSchema

?service=DataAbstractService
HEADERS
Content-Type

text/xml; charset=utf-8

SOAPAction

urn:EasyIPLibrary-DataAbstractService#GetSchema

Bodyraw (xml)
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DataAbstractService___GetSchemaRequest>
      <aFilter>string</aFilter>
    </DataAbstractService___GetSchemaRequest>
  </soap:Body>
</soap:Envelope>
Example Request
curl
curl --location '?service=DataAbstractService' \
--header 'Content-Type: text/xml; charset=utf-8' \
--header 'SOAPAction: urn:EasyIPLibrary-DataAbstractService#GetSchema' \
--data '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DataAbstractService___GetSchemaRequest>
      <aFilter>string</aFilter>
    </DataAbstractService___GetSchemaRequest>
  </soap:Body>
</soap:Envelope>
'
200 OK
Example Response
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DataAbstractService___GetSchemaResponse>
      <Result>string</Result>
    </DataAbstractService___GetSchemaResponse>
  </soap:Body>
</soap:Envelope>
Content-Type

text/xml; charset=utf-8

POSTGetData

?service=DataAbstractService
HEADERS
Content-Type

text/xml; charset=utf-8

SOAPAction

urn:EasyIPLibrary-DataAbstractService#GetData

Bodyraw (xml)
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DataAbstractService___GetDataRequest/>
  </soap:Body>
</soap:Envelope>
Example Request
curl
curl --location '?service=DataAbstractService' \
--header 'Content-Type: text/xml; charset=utf-8' \
--header 'SOAPAction: urn:EasyIPLibrary-DataAbstractService#GetData' \
--data '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DataAbstractService___GetDataRequest/>
  </soap:Body>
</soap:Envelope>
'
200 OK
Example Response
xml
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DataAbstractService___GetDataResponse/>
  </soap:Body>
</soap:Envelope>
Content-Type

text/xml; charset=utf-8