GET CustomerClassification/GetCustomerClassification
Returns a list of customer classifications.
Request Information
URI Parameters
Body Parameters
Response Information
Resource Description
Returns a list of customer classifications.
AgvCustomerClassification| Name | Description | Type | Additional Information |
|---|---|---|---|
| Status |
Status of the API call. |
string | |
| Message |
Message of the API call. |
string | |
| Count |
Count of how many CustomerClassifications JSON dictionaries. |
string | |
| CustomerClassifications |
JSON dictionary of CustomerClassifications. |
Collection of CustomerClassifications |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2",
"Count": "sample string 3",
"CustomerClassifications": [
{
"Name": "sample string 1"
},
{
"Name": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<AgvCustomerClassification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Customer">
<Count>sample string 3</Count>
<CustomerClassifications>
<CustomerClassifications>
<Name>sample string 1</Name>
</CustomerClassifications>
<CustomerClassifications>
<Name>sample string 1</Name>
</CustomerClassifications>
</CustomerClassifications>
<Message>sample string 2</Message>
<Status>sample string 1</Status>
</AgvCustomerClassification>