
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2024 06:58 PM
I am trying to retrieve the switch port an asset is plugged into.
Using the networks.connection.key already gives me network switch along with the SnmpInfos.
What I am missing is the lookup of switch port by MAC, which appearently exists on the Webpage:
query getNetworkInformation{
...
snmpAssetMacsByMac {}
...
}
How would I do this in a proper GraphQL query against the Data API?
- Labels:
-
API & Integrations

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Wednesday
Looking at the Lansweeper asset detail web page I can see an XHR to https://app.lansweeper.com/api/gateway?operation=getNetworkInformation
The Request looks something like this:
query getNetworkInformation($assetKey: ID!, $siteId: ID!) {
site(id: $siteId) {
asset(key: $assetKey) {
ipAddress
mac
assetMacAddresses {
mac
__typename
}
snmpAssetMacsByMac {
...SnmpAssetMac
__typename
}
networks {
ipEnabled
macAddress
ipAddress
name: description
subnet: ipSubnet
gateway: defaultIpGateway
__typename
}
macNetworks {
gateway
macAddress: mac
ipAddress: ipv4
__typename
}
linuxNetworkDetections {
gateway
name
subnet: subnetMask
macAddress: mac
ipAddress: ipv4
__typename
}
__typename
}
__typename
}
}
fragment SnmpAssetMac on SnmpAssetMac {
lastSeen
snmpInfo {
interfaceIndex
interfaceDescription
interfaceName
assetKey
interfaceAlias
__typename
}
assetMacAddress
assetKey
asset {
assetName
__typename
}
__typename
}
When I run that Query I get:
{
"errors": [
{
"message": "Cannot query field 'asset' on type 'Site'."
},
{
"message": "Unknown type 'SnmpAssetMac'."
}
]
}
Is there any other way to determine which switch port a device is plugged in to?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-26-2024 04:33 PM
Hello adn77,
At this moment we are not offering the possibility to scan network devices through API calls. Our current SNMP scans are based on a direct scan of the device with credentials.
We are working on initiatives to scan with custom scripts, this will be for 2025!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-26-2024 10:50 PM
I was actually trying to retrieve the same information that is displayed on the asset detail page. (The scan already took place)
When I use the webinterface in a browser, I was comparing the XHRs with the documented API calls. Hence the question if the getNetworkInformation can be used in GraphQL.
Merry Christmas by the way 🙂
