Sign in

Create action item

documented

Create a new action item.

POST /action_itemsAction Itemsno 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://api.workboard.com/api/action_items/create" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"text": "{{$title}}", "description": "{{$description}}", "team": {"slug": "{{$team_slug}}"}, "due_date": "{{$due_date}}", "owner_id": {{$owner_id}}, "priority": "{{$priority}}", "status": "{{$status}}", "resolved": {{$resolved}}}'