FAQsGetting Started

Getting Started FAQ

Find quick answers to common Talkturo setup questions, including assistants, phone numbers, credits, campaigns, and integrations.

Common getting started questions

Use these answers to get your first Talkturo workspace, assistant, phone number, and campaign running without guessing which page or API endpoint to use.

Create your first assistant from the dashboard on the Assistants page. Click New Assistant, choose a template, and complete the 7-step setup wizard.

Talkturo provides these starting templates:

  • Outbound Setter for booking and qualification calls
  • Inbound Support for handling incoming support conversations
  • Follow-up for post-call or post-lead outreach
  • Custom for building your own configuration from scratch

If you prefer automation, create an assistant through the API with a POST request to /api/assistants and include accountSlug, name, and templateId in the request body.

curl -X POST "https://api.talkturo.com/api/assistants" \
  -H "Content-Type: application/json" \
  -d '{
    "accountSlug": "acme-sales",
    "name": "North America Outbound Assistant",
    "templateId": "outbound-setter"
  }'

After setup finishes, your new assistant appears in the Assistants list and is ready for phone number assignment, testing, or campaign use.