fluentcrm_resume_campaign
Resume a paused FluentCRM email marketing campaign by providing the campaign ID to restart automated workflows and message delivery.
Instructions
Wznawia kampanię
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| campaignId | Yes | ID kampanii |
Implementation Reference
- src/fluentcrm-mcp-server.ts:218-221 (handler)Core implementation of resuming a FluentCRM campaign by making a POST request to the `/campaigns/${campaignId}/resume` API endpoint.async resumeCampaign(campaignId: number) { const response = await this.apiClient.post(`/campaigns/${campaignId}/resume`); return response.data; }
- src/fluentcrm-mcp-server.ts:983-984 (handler)MCP server CallToolRequestHandler switch case that executes the tool by calling client.resumeCampaign with the input campaignId argument.case 'fluentcrm_resume_campaign': return { content: [{ type: 'text', text: JSON.stringify(await client.resumeCampaign((args as any)?.campaignId), null, 2) }] };
- src/fluentcrm-mcp-server.ts:722-731 (registration)Registration of the 'fluentcrm_resume_campaign' tool in the ListToolsRequestHandler response, defining its name, description, and input schema.name: 'fluentcrm_resume_campaign', description: 'Wznawia kampanię', inputSchema: { type: 'object', properties: { campaignId: { type: 'number', description: 'ID kampanii' }, }, required: ['campaignId'], }, },
- src/fluentcrm-mcp-server.ts:724-729 (schema)Input schema definition for the tool, specifying that a numeric 'campaignId' is required.inputSchema: { type: 'object', properties: { campaignId: { type: 'number', description: 'ID kampanii' }, }, required: ['campaignId'],