Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaign_id}
/
sftp
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"
  }'
{
  "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"
  }
}

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

campaign_id
string
required
Campaign UUID.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here
Content-Type
string
required
Must be set to application/json

Request Body

host
string
required
SFTP server hostname.
port
integer
SFTP port. Range: 165535. Default: 22.
username
string
required
SFTP username.
auth_type
string
required
Auth method. Options: password, private_key.
password
string
Required when auth_type is password.
private_key
string
Required when auth_type is private_key. PEM-encoded private key.
private_key_passphrase
string
Optional passphrase for the private key.
import_path
string
Remote directory to scan for contact list imports (e.g., /inbox).
export_path
string
Remote directory where call result files are uploaded (e.g., /outbox).
import_schedule
string
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"
  }
}