fluentcrm_resume_campaign
Resume a paused FluentCRM marketing campaign to continue sending emails and automated workflows to your contacts.
Instructions
Wznawia kampanię
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| campaignId | Yes | ID kampanii |
Implementation Reference
- src/fluentcrm-mcp-server.ts:983-984 (handler)MCP CallTool handler case for 'fluentcrm_resume_campaign' that extracts campaignId from args and calls client.resumeCampaigncase 'fluentcrm_resume_campaign': return { content: [{ type: 'text', text: JSON.stringify(await client.resumeCampaign((args as any)?.campaignId), null, 2) }] };
- src/fluentcrm-mcp-server.ts:724-730 (schema)Input schema definition for the tool, requiring a numeric campaignIdinputSchema: { type: 'object', properties: { campaignId: { type: 'number', description: 'ID kampanii' }, }, required: ['campaignId'], },
- src/fluentcrm-mcp-server.ts:722-731 (registration)Registration of the tool in ListTools handler, including name, description, and input schemaname: 'fluentcrm_resume_campaign', description: 'Wznawia kampanię', inputSchema: { type: 'object', properties: { campaignId: { type: 'number', description: 'ID kampanii' }, }, required: ['campaignId'], }, },
- src/fluentcrm-mcp-server.ts:218-221 (helper)FluentCRMClient helper method implementing the resume campaign API call via POST to /campaigns/{campaignId}/resumeasync resumeCampaign(campaignId: number) { const response = await this.apiClient.post(`/campaigns/${campaignId}/resume`); return response.data; }