Kampanyayı başlatın veya duraklatılmış kampanyayı devam ettirin
/api/v1/campaigns/:id/startPENDING durumundaki kampanyayı başlatır veya PAUSED durumundaki kampanyayı devam ettirir.
idzorunluKampanya ID'si
curl -X POST "https://api.wespoke.ai/api/v1/campaigns/camp_abc123/start" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"{
"success": true,
"data": {
"campaign": {
"id": "camp_abc123",
"name": "Yaz Kampanyası 2025",
"status": "RUNNING",
"phoneNumberId": "phone_123abc",
"assistantId": "asst_456def",
"userId": "user_xyz",
"totalContacts": 1000,
"successfulCalls": 0,
"failedCalls": 0,
"pendingCalls": 1000,
"metadata": {
"department": "sales",
"region": "istanbul"
},
"createdAt": "2025-01-20T10:00:00Z",
"updatedAt": "2025-01-20T14:30:00Z",
"startedAt": "2025-01-20T14:30:00Z",
"completedAt": null
},
"message": "Campaign started successfully"
}
}{
"success": false,
"error": {
"message": "Campaign not found",
"code": "CAMPAIGN_NOT_FOUND"
}
}{
"success": false,
"error": {
"message": "Campaign cannot be started. Current status: COMPLETED",
"code": "INVALID_STATUS"
}
}{
"success": false,
"error": {
"message": "Insufficient credits to start campaign",
"code": "INSUFFICIENT_CREDITS",
"details": {
"required": 75.0,
"available": 25.0
}
}
}