This action changes the domain name information registered in a software order.
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 |
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"
}'
{
"status": "successful"
}