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

Set metadata for a name

POST /v1/dns/records/{zone_name}/{name}/metadata

Set metadata associated to a name. Name metadata is stored until the name gets deleted. New keys are added, existing keys are updated. To remove a key, set its value to an empty string.

See the Expression schema documentation for information about metadata values.

Path Parameters

zone_name

The name of the zone.

Example: example.com

name

The DNS name, not including the zone portion.

Example: dns-name

Body

application/json

Body Sample

{
"metadata": {
"public property": "public value"
}
}

Body Description

metadata object

A collection of string key/value pairs that provide additional information or classification for an object.

Response