GET Manufacturer/GetManufacturer
Returns a list of Manufacturers.
Request Information
URI Parameters
Body Parameters
Response Information
Resource Description
Returns a list of Manufacturers.
AgvManufacturer| Name | 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": "95a159f1-9fc1-4bc4-80a0-de7e59b7a48c"
},
{
"UniqueID": 5,
"ManufacturerName": "sample string 6",
"EDIName": "sample string 7",
"ManufacturerGuid": "95a159f1-9fc1-4bc4-80a0-de7e59b7a48c"
}
]
}
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>95a159f1-9fc1-4bc4-80a0-de7e59b7a48c</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>95a159f1-9fc1-4bc4-80a0-de7e59b7a48c</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>