Cyan Web API - Version 1


GET api/values

            Gets all of the values (v1)
            

Response Information

Response body formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArrayOfValueDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.WebApi.Controllers.Version1">
  <ValueDto>
    <Value>sample string 1</Value>
  </ValueDto>
  <ValueDto>
    <Value>sample string 1</Value>
  </ValueDto>
  <ValueDto>
    <Value>sample string 1</Value>
  </ValueDto>
</ArrayOfValueDto>