function authTokenQueryUrl()

in src/libs/zuora.ts [31:37]


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