Skip to main content
POST
/
api
/
v1
/
dns
/
activate
Activate DNS service
curl --request POST \
  --url https://dev.namify.host/api/v1/dns/activate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "order_id": 124680932
}
'
{
  "status": "SUCCESS",
  "message": "DNS service activated 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 for which DNS service should be activated.

Example:

124680932

Response

DNS service activated successfully.

status
string
Example:

"SUCCESS"

message
string
Example:

"DNS service activated successfully"