Twindem for developers API --:-- UTC
Developers

Developers · API

Call the Twindem API.

The Board and Docs are a REST API over HTTPS. Authenticate with a project API key and create work items, push runs and evidence, and write docs pages from anything - CI, scripts, or your own tools.

  • Create and update work items and phases
  • Push runs, usage, and evidence
  • Read and write Docs pages (TDocs)
  • Self-describing Swagger for every operation
 Terminal# Validate the key and see your project grants
curl -H "Authorization: Bearer $TWINDEM_KEY" \
     https://twindem.ai/api/auth/context

# List work items on a project board (TBoard)
curl -H "Authorization: Bearer $TWINDEM_KEY" \
     https://twindem.ai/api/board/projects/$PID/work-items

# Create a docs page (TDocs)
curl -X POST -H "Authorization: Bearer $TWINDEM_KEY" \
     -H "Content-Type: application/json" \
     -d '{"title":"Release notes","bodyMarkdown":"..."}' \
     https://twindem.ai/api/docs/projects/$PID/pages

Reference: Authentication & project grants · TBoard API · TDocs API · Swagger