Domain Name Change
This action changes the domain name information registered in a software order.
Method / Endpoint
POST/ {{API_URL}} order/transaction
Request Parameters
| Name | Requirement | Description | 
|---|---|---|
| key | Yes | API Key | 
| id | Yes | ID Number of the order | 
| action | Yes | The type of action to be taken: change-domain | 
| domain | Yes | Info about the new domain name to be defined. Ex: example.com | 
Sample cURL Request
curl --location 'https://example.com/api/reseller/order/transaction' \
--header 'Content-Type: application/json' \
--data '{
    "key": "UzZBSlBWeWk0UEcrVWxlU0RjS1B1dz09",
    "id": 2,
    "action": "change-domain",
    "domain": "newexample.com"
}'Sample JSON Response
{
    "status": "successful"
}