Skip to content
The No-IP API is in beta and we are actively working on new features and endpoints.

Create Rdata

POST /v1/dns/records/{zone_name}/{name}/rrsets/{dnstype}/rdata

Create records of a given type in a name. If the name did not exist, the name will also be created,

Path Parameters

zone_name

The name of the zone.

Example: example.com

name

The DNS name, not including the zone portion.

Example: dns-name

dnstype

DNS name type supported by API

Example: A

Body

application/json

Body Sample

[
{
"label": "a-label-123",
"update_group": "grp_1-2",
"value": "192.0.2.1"
}
]

Body Description

array[object]

label string

Label for an Rdata that uniquely identifies it within its RRSet
Labels are case-insensitive and may contain alphanumeric characters and dashes.
If a label is not set manually, it will be autogenerated, prefixed with an underscore _.

Example: a-label-123

update_group string

Name of the update group

Example: grp_1-2

*value string

Rdata value

Example: 192.0.2.1

Response