GET api/Requestor/Version
Gets the version of the Requestor web application and the API version.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
HttpStatusCode 200 OK and the Version data.
VersionResultName | Description | Type | Additional information |
---|---|---|---|
Requestor |
The version of the Requestor web application. |
RequestorVersion |
None. |
Api |
The version of the Requestor API. |
ApiVersion |
None. |
Response Formats
application/json, text/json
Sample:
{ "Requestor": { "Version": "5.10.1", "Major": 5, "Minor": 10, "Build": 9102, "Revision": 31402, "Patch": 1, "Beta": false, "Branch": null, "Date": "0001-01-01T00:00:00" }, "Api": { "Major": 18, "Minor": 1 } }
application/xml, text/xml
Sample:
<VersionResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results"> <Api> <Major>18</Major> <Minor>1</Minor> </Api> <Requestor> <Beta>false</Beta> <Branch i:nil="true" /> <Build>9102</Build> <Date>0001-01-01T00:00:00</Date> <Major>5</Major> <Minor>10</Minor> <Patch>1</Patch> <Revision>31402</Revision> <Version>5.10.1</Version> </Requestor> </VersionResult>