GET api/Sync/Version/{folderName}

Get terminal application version

Request Information

URI Parameters

NameDescriptionTypeAdditional information
folderName

string

Required

Body Parameters

None.

Response Information

Resource Description

Dictionary of decimal number [key] and Collection of string [value]

Response Formats

application/json, text/json

Sample:
{
  "1": [
    "sample string 1",
    "sample string 2"
  ],
  "2": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfdecimalArrayOfstringty7Ep6D1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfdecimalArrayOfstringty7Ep6D1>
    <Key>1</Key>
    <Value>
      <string>sample string 1</string>
      <string>sample string 2</string>
    </Value>
  </KeyValueOfdecimalArrayOfstringty7Ep6D1>
  <KeyValueOfdecimalArrayOfstringty7Ep6D1>
    <Key>2</Key>
    <Value>
      <string>sample string 1</string>
      <string>sample string 2</string>
    </Value>
  </KeyValueOfdecimalArrayOfstringty7Ep6D1>
</ArrayOfKeyValueOfdecimalArrayOfstringty7Ep6D1>