GET api/Customer
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| intCustomerId | integer |
None. |
|
| strCustomerName | string |
None. |
|
| intSupplierIdForAdress | integer |
None. |
|
| intLayoutId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"intCustomerId": 1,
"strCustomerName": "sample string 2",
"intSupplierIdForAdress": 3,
"intLayoutId": 4
},
{
"intCustomerId": 1,
"strCustomerName": "sample string 2",
"intSupplierIdForAdress": 3,
"intLayoutId": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GefahrstofferfassungWappService.Models">
<CustomerModel>
<intCustomerId>1</intCustomerId>
<intLayoutId>4</intLayoutId>
<intSupplierIdForAdress>3</intSupplierIdForAdress>
<strCustomerName>sample string 2</strCustomerName>
</CustomerModel>
<CustomerModel>
<intCustomerId>1</intCustomerId>
<intLayoutId>4</intLayoutId>
<intSupplierIdForAdress>3</intSupplierIdForAdress>
<strCustomerName>sample string 2</strCustomerName>
</CustomerModel>
</ArrayOfCustomerModel>