GET api/Notes/ListStatuses

Return a list of available Noe Statuses

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

KeyValuePair(Of String, Integer)()

Collection of Pair of string [key] and integer [value]

Response Formats

application/json, text/json

Sample:
[
  {
    "Key": "sample string 1",
    "Value": 707
  },
  {
    "Key": "sample string 1",
    "Value": 534
  }
]

application/xml, text/xml

Sample:
<ArrayOfKeyValuePairOfstringint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
  <KeyValuePairOfstringint>
    <key>sample string 1</key>
    <value>707</value>
  </KeyValuePairOfstringint>
  <KeyValuePairOfstringint>
    <key>sample string 1</key>
    <value>534</value>
  </KeyValuePairOfstringint>
</ArrayOfKeyValuePairOfstringint>