Documentation Index
Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt
Use this file to discover all available pages before exploring further.
Create Campaign SFTP Config
Configure SFTP integration for a campaign. The configuration is created in disabled state — test the connection successfully before enabling.
Endpoint
POST /api/v1/campaigns/{campaign_id}/sftp
Path Parameters
Bearer token. Format: Bearer talq_your_environment_token_here
Must be set to application/json
Request Body
SFTP port. Range: 1–65535. Default: 22.
Auth method. Options: password, private_key.
Required when auth_type is password.
Required when auth_type is private_key. PEM-encoded private key.
Optional passphrase for the private key.
Remote directory to scan for contact list imports (e.g., /inbox).
Remote directory where call result files are uploaded (e.g., /outbox).
Auto-import schedule. Options: manual, hourly, daily. Default: manual.
Examples
curl -X POST "https://app.talkover.ai/api/v1/campaigns/campaign-uuid/sftp" \
-H "Authorization: Bearer talq_your_environment_token_here" \
-H "Content-Type: application/json" \
-d '{
"host": "sftp.example.com",
"port": 22,
"username": "campaigns_user",
"auth_type": "password",
"password": "secret",
"import_path": "/inbox",
"export_path": "/outbox",
"import_schedule": "daily"
}'
Response
{
"success": true,
"data": {
"id": "sftp-config-uuid-1",
"campaign_id": "campaign-uuid",
"host": "sftp.example.com",
"is_enabled": false,
"created_at": "2024-01-15T16:00:00Z"
}
}