GET api/ArgusAPI/GetVendorInfo
Request Information
URI Parameters
None.
Body Parameters
GetVendorInfoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Login | string |
None. |
|
| Password | string |
None. |
|
| Region | string |
None. |
|
| ApplicationName | string |
None. |
|
| SessionId | string |
None. |
|
| VendorKey | string |
None. |
|
| Initials | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Login": "sample string 1",
"Password": "sample string 2",
"Region": "sample string 3",
"ApplicationName": "sample string 4",
"SessionId": "sample string 5",
"VendorKey": "sample string 6",
"Initials": "sample string 7"
}
application/xml, text/xml
Sample:
<GetVendorInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArgusWebApi2"> <ApplicationName>sample string 4</ApplicationName> <Initials>sample string 7</Initials> <Login>sample string 1</Login> <Password>sample string 2</Password> <Region>sample string 3</Region> <SessionId>sample string 5</SessionId> <VendorKey>sample string 6</VendorKey> </GetVendorInfoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetVendorInfoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorInfoList | Collection of WS_VendorInfo |
None. |
|
| StatusCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"VendorInfoList": [
{
"VendorID": "sample string 1",
"Description": "sample string 2",
"PayAddress1": "sample string 3",
"PayAddress2": "sample string 4",
"PayAddress3": "sample string 5",
"PayContact": "sample string 6",
"PayPhone": "sample string 7",
"Status": "sample string 8"
},
{
"VendorID": "sample string 1",
"Description": "sample string 2",
"PayAddress1": "sample string 3",
"PayAddress2": "sample string 4",
"PayAddress3": "sample string 5",
"PayContact": "sample string 6",
"PayPhone": "sample string 7",
"Status": "sample string 8"
}
],
"StatusCode": "sample string 1"
}
application/xml, text/xml
Sample:
<GetVendorInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArgusWebApi2">
<StatusCode>sample string 1</StatusCode>
<VendorInfoList>
<WS_VendorInfo>
<Description>sample string 2</Description>
<PayAddress1>sample string 3</PayAddress1>
<PayAddress2>sample string 4</PayAddress2>
<PayAddress3>sample string 5</PayAddress3>
<PayContact>sample string 6</PayContact>
<PayPhone>sample string 7</PayPhone>
<Status>sample string 8</Status>
<VendorID>sample string 1</VendorID>
</WS_VendorInfo>
<WS_VendorInfo>
<Description>sample string 2</Description>
<PayAddress1>sample string 3</PayAddress1>
<PayAddress2>sample string 4</PayAddress2>
<PayAddress3>sample string 5</PayAddress3>
<PayContact>sample string 6</PayContact>
<PayPhone>sample string 7</PayPhone>
<Status>sample string 8</Status>
<VendorID>sample string 1</VendorID>
</WS_VendorInfo>
</VendorInfoList>
</GetVendorInfoResponse>