Skip to main content

networks

Paperspace Core API reference guide for networks.

list

List information about all networks available to either the current authenticated user or the team, if the user belongs to a team. The list method takes an optional first argument to limit the returned network objects.

Examples

paperspace networks list \
--apiKey "edc20a51d9b2145..."

Parameters

NameTypeAttributesDescription
idstringoptionalnetwork id to match on
namestringoptionalname to match on
regionstringoptionalregion to match on
dtCreatedstringoptionaldatetime created value to match on
networkstringoptionalnetwork to match on
netmaskstringoptionalnetmask to match on
teamIdstringoptionalteamId to match on

Response

Type array

[
{
"id": "n123abc",
"name": "Example Network",
"region": "East Coast (NY2)",
"dtCreated": "2016-12-22T16:36:42.613Z",
"network": "10.64.21.0",
"netmask": "255.255.255.0",
"teamId": "te456def"
}
]