GET api/version

Returns version info for the NBDC web services and database.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

VersionData
NameDescriptionTypeAdditional information
webService

Gets or sets the version info for the web services.

WebServiceVersion

None.

Response Formats

application/json, text/json

Sample:
{
  "webService": {
    "major": 1,
    "minor": 2,
    "revision": 3,
    "build": 4,
    "fullName": "sample string 5",
    "name": "sample string 6"
  }
}

application/xml, text/xml

Sample:
<versionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nbdc.WebServices.Models.Version">
  <webService>
    <build>4</build>
    <fullName>sample string 5</fullName>
    <major>1</major>
    <minor>2</minor>
    <name>sample string 6</name>
    <revision>3</revision>
  </webService>
</versionData>