GET Trait/GetTraitList

Returns a list of traits.

Request Information

URI Parameters

Body Parameters

Response Information

Resource Description

Returns a list of traits.

AgvTraitList
NameDescriptionTypeAdditional Information
Status

Status of the API call.

string
Message

Message of the API call.

string
Count

Count of how many ProductTrait JSON dictionaries.

string
Traits

JSON dictionary of ProductTrait.

Collection of ProductTrait

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Message": "sample string 2",
  "Count": "sample string 3",
  "Traits": [
    {
      "Trait": "sample string 1"
    },
    {
      "Trait": "sample string 1"
    }
  ]
}

application/xml, text/xml

Sample:
<AgvTraitList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Product">
  <Count>sample string 3</Count>
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
  <Traits>
    <ProductTrait>
      <Trait>sample string 1</Trait>
    </ProductTrait>
    <ProductTrait>
      <Trait>sample string 1</Trait>
    </ProductTrait>
  </Traits>
</AgvTraitList>