GET api/Vendors/{id}
Single Vendor by ID
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | Vendor ID |
Define this parameter in the request URI. |
Response Information
VendorDTO
Response body formats
application/json, text/json
Sample:
{ "VendorID": 1, "VendorName": "sample string 2", "VendorTaxID": "sample string 3", "Address1": "sample string 4", "Address2": "sample string 5", "Address3": "sample string 6", "Address4": "sample string 7", "City": "sample string 8", "State": "sample string 9", "ZipCode": "sample string 10", "TaxType": "sample string 11" }
text/javascript
Sample:
{"VendorID":1,"VendorName":"sample string 2","VendorTaxID":"sample string 3","Address1":"sample string 4","Address2":"sample string 5","Address3":"sample string 6","Address4":"sample string 7","City":"sample string 8","State":"sample string 9","ZipCode":"sample string 10","TaxType":"sample string 11"}