Skip to content

Cloud Architecture‐Change Tenant domain

Sandesh Menath edited this page Oct 26, 2023 · 3 revisions

Change Tenant Domain

  • Endpoint: /changeDomain
  • Method: POST
  • Description: Change the domain of an existing tenant.

Request Parameters

Parameter Name Type Required Description
app_key string required Your secret key.
currentDomain string required The current domain of the tenant.
newDomain string required The new domain for the tenant.
lic_code string required The new license code.

Sample Request

POST /changeDomain
Content-Type: application/json

{
  "app_key": "YOUR_THIRD_PARTY_APP_KEY",
  "currentDomain": "current-tenant-domain.com",
  "newDomain": "new-tenant-domain.com",
  "lic_code": "new-license-code"
}

Sample Response

{
  "status": "success",
  "message": "Your domain has been changed"
}

Note: The request data you see is the data Agora invoicing will be sending and will be expecting the response from your cloud in the format which is mentioned here and then the parent API Change Domain will continue executing

Clone this wiki locally