GET v1/Clients/{clientId}/Inspections/Enumerations

Gets all Enumerations and Values.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

Client identifier.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

A dictionary representation of the enumerations used with Inspection objects.

Dictionary of string [key] and Dictionary of string [key] and integer [value] [value]

Response Formats

application/json, text/json

Sample:
{
  "sample string 1": {
    "sample string 1": 2,
    "sample string 3": 4
  },
  "sample string 2": {
    "sample string 1": 2,
    "sample string 3": 4
  }
}

application/xml, text/xml

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