Example Request XML

OAuth 2.0 Copy imageCopy
POST /inboundws/v1/inboundws.asmx HTTP/1.1
Authorization: Bearer {AccessToken}
Host: iws.concordfax.com Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://iws.concordfax.com/InboundWS/GetInboundItemList"

<?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>
        <GetInboundItemList xmlns="https://iws.concordfax.com/InboundWS/">
            <authentication>
                <UserId>string</UserId>
                <Password></Password>
            </authentication>
            <request>
                <MaxItems>int</MaxItems>
                <Dnis>string</Dnis>
                <ArchivedItems>boolean</ArchivedItems>
                <StartDate>dateTime</StartDate>
                <EndDate>dateTime</EndDate>
            </request>
        </GetInboundItemList>
    </soap:Body>
</soap:Envelope>
Username and password Copy imageCopy
POST /inboundws/v1/inboundws.asmx HTTP/1.1
Host: iws.concordfax.com Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://iws.concordfax.com/InboundWS/GetInboundItemList"

<?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>
        <GetInboundItemList xmlns="https://iws.concordfax.com/InboundWS/">
            <authentication>
                <UserId>string</UserId>
                <Password>string</Password>
            </authentication>
            <request>
                <MaxItems>int</MaxItems>
                <Dnis>string</Dnis>
                <ArchivedItems>boolean</ArchivedItems>
                <StartDate>dateTime</StartDate>
                <EndDate>dateTime</EndDate>
            </request>
        </GetInboundItemList>
    </soap:Body>
</soap:Envelope>

See Also