We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0629d53 commit 74c0ff0Copy full SHA for 74c0ff0
components/zoho_books/actions/make-api-call/make-api-call.mjs
@@ -56,7 +56,7 @@ export default {
56
data: this.requestBody,
57
});
58
59
- $.export("$summary", `Successfully called the path: ${this.path}`);
+ $.export("$summary", `Successfully called the path: ${this.relativeUrl}`);
60
return response;
61
},
62
};
components/zoho_books/common/utils.mjs
@@ -44,5 +44,8 @@ export const checkUrl = (url) => {
44
if (url.startsWith("/books/v3")) {
45
return url.substring(9);
46
}
47
+ if (url.startsWith("/v3")) {
48
+ return url.substring(3);
49
+ }
50
return url;
51
0 commit comments