Description
Returns version information for pixi client applications, including the latest available version and the minimum allowed version for each application. Can be filtered to a single application by name. Used by client applications to validate their version and determine whether an update is required.
Request Parameters
# |
Name |
Type |
Required |
Example |
Description |
1 |
ClientName |
string |
0 |
pixiMobile |
Name of the pixi application to retrieve version information for. If NULL or omitted, all applications are returned. |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/">
<soapenv:Header/>
<soapenv:Body>
<dem:pixiGetVersions>
<dem:ClientName>pixiMobile</dem:ClientName>
</dem:pixiGetVersions>
</soapenv:Body>
</soapenv:Envelope>Response
Body 1: Application Versions
One row per matching application. Returns an empty result set if the specified ClientName is not found.
# |
Name |
Type |
Description |
1 |
ClientName |
string |
Name of the pixi client application. |
2 |
LatestVersion |
string |
The latest available version of the application. |
3 |
MinAllowedVersion |
string |
The minimum version of the application that is still allowed to connect. Versions below this value should be updated. |
Additional Notes
When ClientName is omitted or NULL, all registered application versions are returned.
When ClientName is provided, only the matching application record is returned.
Returns an empty result set if the specified ClientName does not exist.