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.

Operational registry: who’s on the team, who owns what, where to reach them. This is metadata used by DAC for context (mentions in coaching, who-owns-this lookups). Distinct from team scoring (/api/teams), which is a paid Business-tier feature. The team registry is Free-tier accessible.

List members

curl -X GET https://app.dacard.ai/api/team-registry \
  -H "Authorization: Bearer $DACARD_API_KEY"

Add a member

curl -X POST https://app.dacard.ai/api/team-registry \
  -H "Authorization: Bearer $DACARD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jordan Lee",
    "email": "jordan@acme.com",
    "slackHandle": "@jordan",
    "ownsAreaText": "Onboarding flows"
  }'

Remove a member

curl -X DELETE "https://app.dacard.ai/api/team-registry?id=trm_xyz" \
  -H "Authorization: Bearer $DACARD_API_KEY"
PropertyValue
AuthRequired
Required scopeAccount membership
PlanAll tiers (Free included)
IdempotentGET yes. POST no (creates new row). DELETE yes.

Errors

StatusCodeWhen
401AUTH_REQUIREDNo session.
403ONBOARDING_REQUIREDUser has no account.
500INTERNAL_ERRORDB read or write failed.