π Regions
Get all Regions
LinodeClient linodeClient = new LinodeClient("apikey");
// Get All
List<Region> list = await linodeClient.Region.Get();Get a Region
LinodeClient linodeClient = new LinodeClient("apikey");
// Set ID
string regionId = "ap-south";
// Get
Region region = await linodeClient.Region.Get(regionId);JSON
Last updated