Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dacard.ai/llms.txt

Use this file to discover all available pages before exploring further.

Capture the Day 1 welcome interview answers (or the skip flag). One of the two activation milestones; completing it (or skipping) marks the user activated for the Day 1 read.
curl -X POST https://app.dacard.ai/api/onboarding/welcome-interview \
  -H "Authorization: Bearer $DACARD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "answers": {
      "0": "Series B SaaS, 32 employees",
      "1": "We ship every two weeks",
      "2": "Customer churn is the headline tension"
    },
    "skipped": false
  }'
PropertyValue
AuthRequired
IdempotentYes (overwrites prior submission)

Body

FieldTypeRequiredNotes
answersRecord<number, string>yes (or skipped: true)Up to 5 entries. Empty strings allowed.
skippedbooleanyesPass true to mark the interview skipped without answers.

Errors

StatusCodeWhen
400INVALID_PAYLOADMore than 5 answers, or skipped not boolean.
401AUTH_REQUIREDNo session.
500INTERNAL_ERRORWrite failed.

Side effects

  • PostHog event: welcome_interview_submitted with answeredCount.
  • Activation tracker flips Day 1 milestone to complete.