GET api/rfqs/GetVendorStatsByCompanyId/{companyId}
Get vendor stats by company ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyId |
Company Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
VendorStatsViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Country | string |
None. |
|
| PartsConformance | decimal number |
None. |
|
| OrderConformance | decimal number |
None. |
|
| OnTimeConformance | decimal number |
None. |
|
| CompletedParts | integer |
None. |
|
| CompletedOrders | integer |
None. |
|
| LeadTime | integer |
None. |
|
| Company | CompanyInfo |
None. |
|
| Stats | RFQChartData |
None. |
|
| VendorType | VENDOR_TYPE |
None. |
|
| PartnerType | PARTNER_TYPE |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 2",
"country": "sample string 3",
"partsConformance": 4.1,
"orderConformance": 5.1,
"onTimeConformance": 6.1,
"completedParts": 7,
"completedOrders": 8,
"leadTime": 9,
"company": {
"id": 1,
"name": "sample string 2",
"city": "sample string 3",
"country": "sample string 4"
},
"stats": {
"at": "sample string 1",
"shippedParts": 2,
"ncrParts": 3,
"shippedOrders": 4,
"ordersOnTime": 5,
"ncrsByVendor": 6,
"partsConformance": 7.1,
"orderConformance": 8.1,
"onTimeConformance": 9.1,
"avrLeadTime": 10,
"month": 11,
"year": 12
},
"vendorType": 1,
"partnerType": 1
}