GET api/vendorservices
GET: api/vendorservices
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of VendorServiceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorServiceId |
VendorServiceId |
integer |
None. |
| Name |
Name |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"vendorServiceId": 1,
"name": "sample string 2"
},
{
"vendorServiceId": 1,
"name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfVendorServiceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Controllers.Vendors.Models">
<VendorServiceResponse>
<Name>sample string 2</Name>
<VendorServiceId>1</VendorServiceId>
</VendorServiceResponse>
<VendorServiceResponse>
<Name>sample string 2</Name>
<VendorServiceId>1</VendorServiceId>
</VendorServiceResponse>
</ArrayOfVendorServiceResponse>