Create action item in meeting
documentedCreate an action item within a meeting.
POST /lucid/api/v1/meetings/{meeting_id}/action_itemsAction Itemsno implementation yet0 runsNo 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://site.lucidmeetings.com/lucid/api/v1/meetings/{{$meeting_id}}/action_items" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"description": "<p>{{$description}}</p>", "state": {{$state}}, "member_id": {{$member_id}}, "due_ts": {{$due_ts}}, "close_ts": {{$close_ts}} }'