Skip to main content

NetworkInfo

Retrieves detailed information about a single network by its NetworkID.

:::caution Established API The SOAP API is in maintenance mode. For new integrations use the REST equivalent. :::

Method Signature

NetworkIDInfo NetworkInfo(string SessionID, int NetworkID)

Parameters

ParameterTypeRequiredDescription
SessionIDstringYesActive session token from Login()
NetworkIDintYesNumeric identifier of the network to retrieve

Response Object — NetworkIDInfo

FieldTypeDescription
NetworkIDintUnique numeric identifier for the network
UniqueIDstringUnique string identifier (slug) for the network
CompanyNamestringDisplay name of the network company
StatusStatusCurrent status of the network (see ENUMs)
CreateddateTimeUTC timestamp when the network record was created
ModifieddateTimeUTC timestamp of the most recent modification
<!-- Example response XML -->
<NetworkIDInfo>
<NetworkID>1</NetworkID>
<UniqueID>MYNETWORK</UniqueID>
<CompanyName>My Network Company</CompanyName>
<Status>Active</Status>
<Created>2020-01-15T00:00:00</Created>
<Modified>2024-03-10T12:34:56</Modified>
</NetworkIDInfo>

ENUMs

Status

See Status enum for all possible values.

Code Examples

// .NET 10 — dotnet-svcutil generated proxy
// Retrieve network details for a known NetworkID
var result = await client.NetworkInfoAsync(sessionID, networkId);

Console.WriteLine($"Network: {result.CompanyName} ({result.Status})");
Console.WriteLine($"Created: {result.Created:yyyy-MM-dd}");

REST Equivalent

See Get NetworkGET /v2/networks/{id}.