GET api/General/Customer/GetCustomersKeyValue
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerKeyValue| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerID | string |
None. |
|
| CustomerName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CustomerID": "sample string 1",
"CustomerName": "sample string 2"
},
{
"CustomerID": "sample string 1",
"CustomerName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.CustomModels">
<CustomerKeyValue>
<CustomerID>sample string 1</CustomerID>
<CustomerName>sample string 2</CustomerName>
</CustomerKeyValue>
<CustomerKeyValue>
<CustomerID>sample string 1</CustomerID>
<CustomerName>sample string 2</CustomerName>
</CustomerKeyValue>
</ArrayOfCustomerKeyValue>