Sign in

List todo lists

documented

Get all todo lists for a card.

GET /projects/{project_id}/cards/{card_id}/todo_lists.jsonCardsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{BREEZE_GRAPHQL_ENDPOINT}}/graphql" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"query": "query GetTodoLists($projectId: ID!, $cardId: ID!) { project(id: $projectId) { card(id: $cardId) { todoLists { id title } } } }", "variables": {"projectId": "{{$project_id}}", "cardId": "{{$card_id}}"}}'