GET WebServiceList/GetEDNWebService?vendorID={vendorID}
Returns a list of web service information for a specified Vendor.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| vendorID |
Vendor ID of web services to return. |
string |
Required |
Body Parameters
Response Information
Resource Description
Returns a list of web service information for a specified Vendor.
AgvEDNWebService| Name | Description | Type | Additional Information |
|---|---|---|---|
| Status |
Status of the API call. |
string | |
| Message |
Message of the API call. |
string | |
| Count |
Count of how many web services. |
string | |
| WebServiceRecords |
JSON dictionary of Vendor Web Services. |
Collection of webServiceList |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Message": "sample string 2",
"Count": "2",
"WebServiceRecords": [
{
"url": "sample string 1",
"theKey": "sample string 2",
"supplierName": "sample string 3",
"webServNumber": 4.1
},
{
"url": "sample string 1",
"theKey": "sample string 2",
"supplierName": "sample string 3",
"webServNumber": 4.1
}
]
}
application/xml, text/xml
Sample:
<AgvEDNWebService xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.WebServices">
<Message>sample string 2</Message>
<Status>sample string 1</Status>
<WebServiceRecords xmlns:d2p1="http://schemas.datacontract.org/2004/07/SKY.Core.WebServices">
<d2p1:ClsWebServices.webServiceList>
<d2p1:supplierName>sample string 3</d2p1:supplierName>
<d2p1:theKey>sample string 2</d2p1:theKey>
<d2p1:url>sample string 1</d2p1:url>
<d2p1:webServNumber>4.1</d2p1:webServNumber>
</d2p1:ClsWebServices.webServiceList>
<d2p1:ClsWebServices.webServiceList>
<d2p1:supplierName>sample string 3</d2p1:supplierName>
<d2p1:theKey>sample string 2</d2p1:theKey>
<d2p1:url>sample string 1</d2p1:url>
<d2p1:webServNumber>4.1</d2p1:webServNumber>
</d2p1:ClsWebServices.webServiceList>
</WebServiceRecords>
</AgvEDNWebService>