Skip to main content
POST
/
api
/
v1
/
dns
/
cname-record
Add a CNAME record
curl --request POST \
  --url https://dev.namify.host/api/v1/dns/cname-record \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "order_id": 124680932,
  "value": "target.example.com",
  "host": "www"
}
'
{ "status": "SUCCESS", "message": "Record added successfully" }

Authorizations

Authorization
string
header
required

A personal access token. Obtain one from the dashboard under Settings > API Key. Include it in the Authorization header as Bearer <token>. Unauthenticated requests to protected routes return 401 Unauthorized.

Body

application/json
order_id
integer
required

Order ID of the domain.

Example:

124680932

value
string
required

Target hostname this alias should resolve to (fully qualified domain name).

Example:

"target.example.com"

host
string

Subdomain label being aliased, relative to the zone (e.g. www, shop). Cannot be @ — CNAME is not allowed at the apex.

Example:

"www"

time_to_live
integer

TTL in seconds. Minimum 300. Omit to use the zone default.

Example:

300

Response

CNAME record added successfully.

status
string
Example:

"SUCCESS"

message
string
Example:

"Record added successfully"