function zuoraServerUrl()

in src/libs/zuora.ts [39:45]


function zuoraServerUrl(stage: string) {
    let url = 'https://apisandbox.zuora.com'; // this is the code url
    if (stage === 'PROD') {
        url = 'https://www.zuora.com';
    }
    return url;
}