Record DNS

Get All Record DNS

Returns a paginated list of Records configured on a Domain in Linode’s DNS Manager.

LinodeClient linodeClient = new LinodeClient("apikey");

long domainId = 2872928;

// Get all
List<RecordDns> list = await linodeClient.RecordDns.Get(domainId);

Get One Record DNS

View a single Record on this Domain

LinodeClient linodeClient = new LinodeClient("apikey");

long domainId = 2872928;

long recordDnsId = 32484370;

// Get one
RecordDns recordDns = await linodeClient.RecordDns.Get(domainId, recordDnsId);

Create IPv4 DNS Record

Create IPv6 DNS Record

Create CNAME DNS Record

Create TXT DNS Record

Create MX DNS Record

Create CAA DNS Record

Update DNS Record

Updates a single Record on this Domain.

Delete DNS Record

Deletes a Record on this Domain.

Last updated

Was this helpful?