OnlineScheduler


Click here here, for a full list of operations.

DownloadClientFromCentral

SOAP 1.2

Below is an example of a request and answer SOAP 1.2. Instead placeholders real values should be given.

POST /OnlineScheduler.asmx HTTP/1.1
Host: localhost
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>
        <DownloadClientFromCentral xmlns="OnlineScheduler">
            <UserID>string</UserID>
            <ClientID>string</ClientID>
            <LanguageSymbol>string</LanguageSymbol>
        </DownloadClientFromCentral>
    </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>
        <DownloadClientFromCentralResponse xmlns="OnlineScheduler">
            <data>
                <ExecutionStatus>int</ExecutionStatus>
                <ExecutionMessage>string</ExecutionMessage>
            </data>
        </DownloadClientFromCentralResponse>
    </soap12:Body>
</soap12:Envelope>