get https://api.linode.com//vpcs//subnets/
Get information about a single VPC Subnet.
CLI
linode-cli vpcs subnet-view $vpcId $vpcSubnetId
Responses
Get information about a single VPC Subnet.
CLI
linode-cli vpcs subnet-view $vpcId $vpcSubnetId
xxxxxxxxxx
curl --request GET \
--url https://api.linode.com/v4/vpcs/vpcId/subnets/vpcSubnetId \
--header 'accept: application/json'
xxxxxxxxxx
19{
"created": "2023-07-11T00:00:00",
"id": 456,
"ipv4": "10.0.1.0/24",
"label": "cool-vpc-subnet",
"linodes": [
{
"id": 111,
"interfaces": [
{
"active": true,
"config_id": 4567,
"id": 421
}
]
}
],
"updated": "2023-09-11T00:00:00"
}