File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
apps/OpenSignServer/cloud/parsefunction Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,14 @@ export default async function ZohoDetails(request) {
23
23
} ;
24
24
// Make the POST request using Axios
25
25
const res = await axios . post ( url , formData , { headers } ) ;
26
-
27
26
// console.log("Access Token:", res.data);
28
-
29
27
if ( res . data . access_token ) {
30
28
const hostedpages = request . params . hostedpagesId ;
31
29
const userData = await axios . get ( 'https://billing.zoho.in/api/v1/hostedpages/' + hostedpages , {
32
30
headers : {
33
31
Authorization : 'Zoho-oauthtoken ' + res . data . access_token ,
34
- 'X-com-zoho-billing-organizationid' : process . env . ZOHO_BILLING_ORG_ID ,
32
+ 'X-com-zoho-subscriptions-organizationid' : process . env . ZOHO_BILLING_ORG_ID ,
33
+ // 'X-com-zoho-billing-organizationid': process.env.ZOHO_BILLING_ORG_ID,
35
34
} ,
36
35
} ) ;
37
36
// console.log(
You can’t perform that action at this time.
0 commit comments