Emails


Click here for a complete list of operations.

GetAllUnread

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
Code:
MarkAsRead:

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 /Emails.asmx HTTP/1.1
Host: ws.adido.org.uk
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://ws.emails.adido.org.uk/GetAllUnread"

<?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>
    <GetAllUnread xmlns="http://ws.emails.adido.org.uk/">
      <Code>string</Code>
      <MarkAsRead>boolean</MarkAsRead>
    </GetAllUnread>
  </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>
    <GetAllUnreadResponse xmlns="http://ws.emails.adido.org.uk/">
      <GetAllUnreadResult>
        <Email>
          <ID>int</ID>
          <Code>string</Code>
          <Aux1>string</Aux1>
          <Aux2>string</Aux2>
          <Aux3>string</Aux3>
          <Guid>string</Guid>
          <Body>string</Body>
          <IsBodyHTML>string</IsBodyHTML>
          <MimeVersion>string</MimeVersion>
          <FromEmail>string</FromEmail>
          <DateTime>string</DateTime>
        </Email>
        <Email>
          <ID>int</ID>
          <Code>string</Code>
          <Aux1>string</Aux1>
          <Aux2>string</Aux2>
          <Aux3>string</Aux3>
          <Guid>string</Guid>
          <Body>string</Body>
          <IsBodyHTML>string</IsBodyHTML>
          <MimeVersion>string</MimeVersion>
          <FromEmail>string</FromEmail>
          <DateTime>string</DateTime>
        </Email>
      </GetAllUnreadResult>
    </GetAllUnreadResponse>
  </soap:Body>
</soap:Envelope>

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 /Emails.asmx HTTP/1.1
Host: ws.adido.org.uk
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>
    <GetAllUnread xmlns="http://ws.emails.adido.org.uk/">
      <Code>string</Code>
      <MarkAsRead>boolean</MarkAsRead>
    </GetAllUnread>
  </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>
    <GetAllUnreadResponse xmlns="http://ws.emails.adido.org.uk/">
      <GetAllUnreadResult>
        <Email>
          <ID>int</ID>
          <Code>string</Code>
          <Aux1>string</Aux1>
          <Aux2>string</Aux2>
          <Aux3>string</Aux3>
          <Guid>string</Guid>
          <Body>string</Body>
          <IsBodyHTML>string</IsBodyHTML>
          <MimeVersion>string</MimeVersion>
          <FromEmail>string</FromEmail>
          <DateTime>string</DateTime>
        </Email>
        <Email>
          <ID>int</ID>
          <Code>string</Code>
          <Aux1>string</Aux1>
          <Aux2>string</Aux2>
          <Aux3>string</Aux3>
          <Guid>string</Guid>
          <Body>string</Body>
          <IsBodyHTML>string</IsBodyHTML>
          <MimeVersion>string</MimeVersion>
          <FromEmail>string</FromEmail>
          <DateTime>string</DateTime>
        </Email>
      </GetAllUnreadResult>
    </GetAllUnreadResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /Emails.asmx/GetAllUnread?Code=string&MarkAsRead=string HTTP/1.1
Host: ws.adido.org.uk
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfEmail xmlns="http://ws.emails.adido.org.uk/">
  <Email>
    <ID>int</ID>
    <Code>string</Code>
    <Aux1>string</Aux1>
    <Aux2>string</Aux2>
    <Aux3>string</Aux3>
    <Guid>string</Guid>
    <Body>string</Body>
    <IsBodyHTML>string</IsBodyHTML>
    <MimeVersion>string</MimeVersion>
    <FromEmail>string</FromEmail>
    <DateTime>string</DateTime>
  </Email>
  <Email>
    <ID>int</ID>
    <Code>string</Code>
    <Aux1>string</Aux1>
    <Aux2>string</Aux2>
    <Aux3>string</Aux3>
    <Guid>string</Guid>
    <Body>string</Body>
    <IsBodyHTML>string</IsBodyHTML>
    <MimeVersion>string</MimeVersion>
    <FromEmail>string</FromEmail>
    <DateTime>string</DateTime>
  </Email>
</ArrayOfEmail>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /Emails.asmx/GetAllUnread HTTP/1.1
Host: ws.adido.org.uk
Content-Type: application/x-www-form-urlencoded
Content-Length: length

Code=string&MarkAsRead=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfEmail xmlns="http://ws.emails.adido.org.uk/">
  <Email>
    <ID>int</ID>
    <Code>string</Code>
    <Aux1>string</Aux1>
    <Aux2>string</Aux2>
    <Aux3>string</Aux3>
    <Guid>string</Guid>
    <Body>string</Body>
    <IsBodyHTML>string</IsBodyHTML>
    <MimeVersion>string</MimeVersion>
    <FromEmail>string</FromEmail>
    <DateTime>string</DateTime>
  </Email>
  <Email>
    <ID>int</ID>
    <Code>string</Code>
    <Aux1>string</Aux1>
    <Aux2>string</Aux2>
    <Aux3>string</Aux3>
    <Guid>string</Guid>
    <Body>string</Body>
    <IsBodyHTML>string</IsBodyHTML>
    <MimeVersion>string</MimeVersion>
    <FromEmail>string</FromEmail>
    <DateTime>string</DateTime>
  </Email>
</ArrayOfEmail>