GET Manufacturer/GetManufacturer
Returns a list of Manufacturers.
Request Information
URI Parameters
Body Parameters
Response Information
Resource Description
Returns a list of Manufacturers.
AgvManufacturerName | Description | Type | Additional Information |
---|---|---|---|
Status |
Status of the API call. |
string | |
Message |
Message of the API call. |
string | |
Count |
Count of how many Manufacturer JSON dictionaries. |
string | |
Manufacturers |
JSON dictionary of Manufacturer objects. |
Collection of ClsManufacturer |
Response Formats
application/json, text/json
Sample:
{ "Status": "sample string 1", "Message": "sample string 2", "Count": "2", "Manufacturers": [ { "UniqueID": 5, "ManufacturerName": "sample string 6", "EDIName": "sample string 7", "ManufacturerGuid": "94177e29-dc9d-4c95-817e-b6215d64af35" }, { "UniqueID": 5, "ManufacturerName": "sample string 6", "EDIName": "sample string 7", "ManufacturerGuid": "94177e29-dc9d-4c95-817e-b6215d64af35" } ] }
application/xml, text/xml
Sample:
<AgvManufacturer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.General"> <Manufacturers xmlns:d2p1="http://schemas.datacontract.org/2004/07/SSI"> <d2p1:Manufacturer> <d2p1:EDIName>sample string 7</d2p1:EDIName> <d2p1:ManufacturerGuid>94177e29-dc9d-4c95-817e-b6215d64af35</d2p1:ManufacturerGuid> <d2p1:ManufacturerName>sample string 6</d2p1:ManufacturerName> <d2p1:UniqueID>5</d2p1:UniqueID> </d2p1:Manufacturer> <d2p1:Manufacturer> <d2p1:EDIName>sample string 7</d2p1:EDIName> <d2p1:ManufacturerGuid>94177e29-dc9d-4c95-817e-b6215d64af35</d2p1:ManufacturerGuid> <d2p1:ManufacturerName>sample string 6</d2p1:ManufacturerName> <d2p1:UniqueID>5</d2p1:UniqueID> </d2p1:Manufacturer> </Manufacturers> <Message>sample string 2</Message> <Status>sample string 1</Status> </AgvManufacturer>