ApiDQ version get service

ApiDQ version get service #

The service allows you to get the current version of ApiDQ, as well as versions of address directories.

Method address #

GET /version

Query parameters #

Request data example #

curl "https://api.apidq.io/v1/version" \
     -H 'Content-Type: application/json' \
     -H 'Accept: application/json'

Response options #

ParameterDescription
serviceVersionServices version
dbVersionVersions of address directories
dbDatabase version
migrationMigration version

Response data example #

{
  "serviceVersion": "1.5.0",
  "dbVersion": {
    "ru": {
      "db": "20221005",
      "migration": "202210072"
    },
    "kz": {
      "db": "20221005",
      "migration": ""
    },
    "by": {
      "db": "",
      "migration": ""
    },
    "ua": {
      "db": "",
      "migration": ""
    }
  }
}