GetVersion

This method will return the current version of the portal application. This can be used as a ping method. This method is non-encrypted.

SOAP implementation

Content type

text/xml; charset="utf-8";

Header

Action: "http://www.pointsharp.com/netid/server/portal/IServiceSoap/GetVersion"

Request
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body>
        <GetVersion xmlns="http://www.pointsharp.com/netid/server/portal">
        </GetVersion>
    </s:Body>
</s:Envelope>
Response
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
        <GetVersionResponse xmlns="http://www.pointsharp.com/netid/server/portal">
            <GetVersionResult>
                <Version>6.0.0.10</Version>
                <Status>
                    <Code>Success</Code>
                    <Description>Success</Description>
                </Status>
            </GetVersionResult>
        </GetVersionResponse>
    </s:Body>
</s:Envelope>

REST implementation

Content type

application/json; charset="utf-8";

Method

GET

URI

/api/version/get

Request

No data is needed. This is a GET method.

Response
{
    "Version": "6.0.0.10",
    "Status": {
        "Code": "Success",
        "Description": "Success"
    }
}