Example Request XML

OAuth 2.0 Copy imageCopy
POST /fax/v5 HTTP/1.1 
Authorization: Bearer {AccessToken}
Content-Type: "application/soap+xml; charset=utf-8"
Content-Length: length
x-ch-request-id: "{optional unique identifier}"
SOAPAction: ""

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
            xmlns="urn:FaxWS">
    <soap:Body>
        <GetFaxBroadcastStatus>
            <UserID>string</UserID>
            <strPIN></strPIN>
            <request>
                <JobId></JobId>
                <StartRecipientId>-1</StartRecipientId>
                <EndRecipientId>-1</EndRecipientId>
                <RecipientStatus>-1</RecipientStatus>
            </request>
        </GetFaxBroadcastStatus>
    </soap:Body>
</soap:Envelope>
Username and password Copy imageCopy
POST /fax/v5 HTTP/1.1 
Content-Type: "application/soap+xml; charset=utf-8"
Content-Length: length
x-ch-request-id: "{optional unique identifier}"
SOAPAction: ""

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
            xmlns="urn:FaxWS">
    <soap:Header/>
    <soap:Body>
        <GetFaxBroadcastStatus>
            <UserID>string</UserID>
            <strPIN>string</strPIN>
            <request>
                <JobId></JobId>
                <StartRecipientId>-1</StartRecipientId>
                <EndRecipientId>-1</EndRecipientId>
                <RecipientStatus>-1</RecipientStatus>
            </request>
        </GetFaxBroadcastStatus>
    </soap:Body>
</soap:Envelope>

See Also