GET api/TSWHOLESALE_CARS/getExpeditorCustomersSafSale/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ModelExpeditorSale| Name | Description | Type | Additional information |
|---|---|---|---|
| EXPEDITOR_ID | integer |
None. |
|
| WORKER_NAME | string |
None. |
|
| SATIS | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EXPEDITOR_ID": 1,
"WORKER_NAME": "sample string 2",
"SATIS": 3.0
},
{
"EXPEDITOR_ID": 1,
"WORKER_NAME": "sample string 2",
"SATIS": 3.0
}
]
application/xml, text/xml
Sample:
<ArrayOfModelExpeditorSale xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EnginAnallyse.Models">
<ModelExpeditorSale>
<EXPEDITOR_ID>1</EXPEDITOR_ID>
<SATIS>3</SATIS>
<WORKER_NAME>sample string 2</WORKER_NAME>
</ModelExpeditorSale>
<ModelExpeditorSale>
<EXPEDITOR_ID>1</EXPEDITOR_ID>
<SATIS>3</SATIS>
<WORKER_NAME>sample string 2</WORKER_NAME>
</ModelExpeditorSale>
</ArrayOfModelExpeditorSale>