-
Getting Started
-
Domains
- Authentication & Headers
- Get Domain Pricing
- Search Domain Availability
- List Domains
- Register Domain
- Transfer Domain
- Get Registrar Domain Info
- Change Nameservers
- Registrar Lock (Enable/Disable)
- Whois Privacy (Toggle)
- Dns Management (Get/Set)
- Get Epp/Authorization Code
- Renew Domain
- Restore Expired Domain
- Get Local Domain Details
- Register Custom Nameserver (Glue Record)
- List Contact Profiles
- Create Contact Profile
- Update Contact Profile
- Assign Contacts To Domain
-
SMM | Lab (SEO)
-
Hosted Payments
-
Crypto Payments
-
Messaging
-
WhatsApp API
-
Email API
-
IPTV
Registrar Lock (Enable/Disable)
Managing Registrar Locks: Controls the "Transfer Lock" status of the domain via a synchronous upstream API call. Enabling the lock prevents unauthorized transfer attempts by other registrars. To begin fetching the EPP Code or facilitating an outward transfer, you must first call the /unlock endpoint to drop the transfer prohibition flags.
Endpoints:
POST /{id}/lock: Enable the registrar lock to trigger theclientTransferProhibitedstate.POST /{id}/unlock: Disable the lock to clear constraints and allow a transfer.
Parameters:
id(required, URL parameter): The local ID of the domain
Example Request (Enable Lock):
curl -X POST "https://umva.net/api/domain/123/lock"
-H "X-API-Key: your_api_key_here"
Success Response Example (HTTP 200):
{
"success": true,
"message": "Registrar lock enabled successfully.",
"data": {
"domain": "example.com",
"registrar_lock": true
}
}
Error Response Example (HTTP 500):
{
"success": false,
"message": "Domain is already locked."
}