Skip to main content

Domain Transfer

Using the Domain Transfer feature in Arvancloud CDN, you can transfer domain management and control from your user account to another person who has an account in Arvancloud.

Note that after transferring the domain to another account, it will not be possible to manage it in your user panel, and only the account to which the domain was transferred can view and change the domain settings.

Transfer Request

To move the domain, first, log in to the account that the domain you want to transfer is in it and click on "Transfer Request".

In the opened window, enter the user ID of the destination account and after confirming the terms, click on "Submit Request".

To find out the destination user ID, just enter "My Domains" and select "Domain Transfer" from the settings menu of that account. On this page and in the right box, you can get the Account ID.

To register a domain transfer request via API, you can use the following sample request:

curl --location 'https://napi.arvancloud.ir/cdn/4.0/domains/example.com/transfer' \
--header 'authority: napi.arvancloud.ir' \
--header 'accept: application/json, text/plain, */*' \
--header 'authorization: API KEY 1 2 3 4' \
--header 'content-type: application/json' \
--data '{"account_id":"Destination_Account_ID"}'

Request Approval

To confirm a transfer request, enter "My Domains" and select "Domain Transfer" from the settings menu. On this page, you can see domain transfer requests that intend to change ownership to your account:

By confirming and accepting the request, the domain will be transferred to your account.

To confirm the domain transfer request via API, you can use the following sample request:

curl --location 'https://napi.arvancloud.ir/cdn/4.0/domains/transfer/change-status' \
--header 'authority: napi.arvancloud.ir' \
--header 'accept: application/json, text/plain, */*' \
--header 'authorization: API KEY 1 2 3 4' \
--header 'cache-control: no-cache' \
--header 'content-type: application/json' \
--data '{"domain":"example.com","status":"accept"}'