Skip to content

Commit 6971622

Browse files
committed
add documentation URL
1 parent 93a73f4 commit 6971622

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/instantly/actions/update-lead-status/update-lead-status.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import instantly from "../../instantly.app.mjs";
44
export default {
55
key: "instantly-update-lead-status",
66
name: "Update Lead Status",
7-
description: "Updates the status of a lead in a campaign. [See the documentation]()",
7+
description: "Updates the status of a lead in a campaign. [See the documentation](https://developer.instantly.ai/lead/update-lead-status)",
88
version: "0.0.1",
99
type: "action",
1010
props: {
@@ -38,7 +38,7 @@ export default {
3838
campaign_id: this.campaignId,
3939
},
4040
});
41-
$.export("$summary", `Updated status of lead with email ${this.email} to ${this.newStatus}`);
41+
$.export("$summary", `Updated lead ${this.email} to status '${this.newStatus}'`);
4242
return response;
4343
} catch ({ response }) {
4444
throw new ConfigurationError(response.data.error);

0 commit comments

Comments
 (0)