Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
type: "action",
key: "zoho_campaigns-add-contact-to-mailing-list",
name: "Add Contact to Mailing List",
version: "0.0.1",
version: "0.0.2",
description: "You can use this API to add contacts to your mailing lists. [See the documentation](https://www.zoho.com/campaigns/help/developers/contact-subscribe.html)",
props: {
app,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
type: "action",
key: "zoho_campaigns-create-campaign",
name: "Create Campaign",
version: "0.0.1",
version: "0.0.2",
description: "You can create a campaign using this API. Using this API, you can set the campaign name, subject line, sender address; choose the intended mailing list.. [See the documentation](https://www.zoho.com/campaigns/help/developers/create-campaign.html)",
props: {
app,
Expand Down
2 changes: 1 addition & 1 deletion components/zoho_campaigns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/zoho_campaigns",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Zoho Campaigns Components",
"main": "dist/app/zoho_campaigns.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "zoho_campaigns-new-campaign",
name: "New Campaign",
description: "Emit new event when a new campaign is created.",
version: "0.0.1",
version: "0.0.2",
methods: {
...common.methods,
_emitEvent(campaign) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "zoho_campaigns-new-contact",
name: "New Contact",
description: "Emit new event when a new contact is created.",
version: "0.0.1",
version: "0.0.2",
props: {
...common.props,
mailingList: {
Expand Down
2 changes: 1 addition & 1 deletion components/zoho_campaigns/zoho_campaigns.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default {
return this.$auth.oauth_access_token;
},
_getBaseUrl() {
return "https://campaigns.zoho.com/api/v1.1";
return `https://campaigns.${this.$auth.base_api_url}/api/v1.1`;
},
_getHeaders() {
return {
Expand Down
Loading