status: 'expired_propagation')nameserver_match_status: 'moved')status: ['expired_propagation'] - for timed-out domainsnameserver_match_status: ['moved'] - for domains with changed nameserversnameserver_status_counts in the List Domains response to see how many domains need attention.curl --location --request POST 'https://api.inboxkit.com/v1/api/domains/nameservers/regenerate' \
--header 'X-Workspace-Id: 550e8400-e29b-41d4-a716-446655440000' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"uids": [
"d1a2b3c4-5678-90ab-cdef-1234567890ab",
"e2f3a4b5-6789-01bc-defg-2345678901cd"
],
"domains": [
"example.com",
"mycompany.net"
]
}'{
"error": false,
"message": "Nameservers regenerated successfully",
"count": 3,
"expired_propagation_count": 1,
"moved_nameservers_count": 2,
"result": [
{
"name": "example.com",
"uid": "d1a2b3c4-5678-90ab-cdef-1234567890ab",
"status": "not_connected",
"nameservers": [
"anna.ns.cloudflare.com",
"bob.ns.cloudflare.com"
],
"cf_zone_id": "abc123def456",
"dns_propagation_status": "pending",
"nameservers_propagation_status": "pending",
"nameserver_match_status": "pending"
}
]
}