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.

Create a Linear issue without going through the dac-backlog approval flow. Direct path for ad-hoc issues created from in-app surfaces (e.g., from a tribal note, from the rail’s quick-action menu).
curl -X POST https://app.dacard.ai/api/linear/create-issue \
  -H "Authorization: Bearer $DACARD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "teamId": "lin_team_xyz",
    "title": "Audit the onboarding email cadence",
    "description": "Day 7 email is opening 38% but click-through is 4%. Worth a copy pass.",
    "labelIds": ["lbl_dac_coaching"]
  }'
PropertyValue
AuthRequired
Required integrationLinear
IdempotentNo

Body

FieldTypeRequiredNotes
teamIdstringyesLinear team id.
titlestringyesIssue title.
descriptionstringnoMarkdown body.
labelIdsstring[]noLinear label ids.
assigneeIdstringnoLinear user id.
priorityintegerno0-4 per Linear’s scale.

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
401INTEGRATION_DISCONNECTLinear OAuth expired.
500INTERNAL_ERRORLinear API call failed.