GET api/ProviderNetwork/{id}?systemName={systemName}&username={username}&password={password}
Gets a specific provider network
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
systemName | string |
Required |
|
username | string |
Required |
|
password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
APIProviderNetworkName | Description | Type | Additional information |
---|---|---|---|
Id |
Unique identifier |
integer |
None. |
ProviderId |
Unique identifier of provider to which this belongs |
integer |
None. |
NetworkId |
Unique identifier of network to which this relates |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "providerId": 2, "networkId": 3 }
application/xml, text/xml
Sample:
<APIProviderNetwork xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rochester.Models"> <Id>1</Id> <NetworkId>3</NetworkId> <ProviderId>2</ProviderId> </APIProviderNetwork>