GetVersion (v2)

Overview

Returns the API version.

The function is available as a Web Service request.

Request

Parameters of the API request:

ParameterType

Description

Requirements
getVersion Tells the system to return the currently used API's versionMandatory

Response

Parameters of the API response:

ParameterType

Description

return

VersionResponse

Provision API version information.

Examples

 

 Example GetVersion transaction.
Example GetVersion transaction.
Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="http://v2.provisioning.ws.web.verba.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <v2:getVersion/>
   </soapenv:Body>
</soapenv:Envelope>

Response:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns2:getVersionResponse xmlns:ns2="http://v2.provisioning.ws.web.verba.com/">
         <return>
            <parts>2</parts>
            <versionStr>v2</versionStr>
         </return>
      </ns2:getVersionResponse>
   </S:Body>
</S:Envelope>

 

Â