Breadcrumbs

Updating Media Server Configs in Tenant Settings


From CX-5.1 onwards, the media server connection URL is moved from CX Environment Variables to the tenant settings.

To update the media server connection URL using the CX Tenant Api’s for CX Voice configuration,

  • Navigate to the API link available in the CX Api collection on Postman.

  • Update your FQDN in the api address bar.

    image-20260122-110805.png


  • Navigate to the Params tab and update the Id param with your tenantId in the query parameters.

    image-20260122-111004.png


  • Navigate to the Body tab and select form-data payload type.

    image-20260122-111146.png
  • Update the wssUrl parameter value to update the media server URL in the data object of the API payload.

    image-20260122-111740.png


  • For reference, the JSON structure is as follows:

    JSON
    {
        "tenantName": "<string>",
        "tenantId": "string",
        "tenantCode": "<string>",
        "tenantSettings": {
            "mediaServer": {
                "wssUrl": "wss://<FS_IP>",
                 "domainManagerUrl": 
                    "http://<FS_IP>/add-domain/"
            }
        }
    
    }