cURL
curl --request POST \ --url https://api.omi.me/v1/dev/user/action-items/batch \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action_items": [ { "description": "Review Q1 report", "due_at": "2025-12-10T17:00:00Z" }, { "description": "Schedule team meeting" } ] } '
{ "action_items": [ { "id": "action_001", "description": "Review Q1 report" }, { "id": "action_002", "description": "Schedule team meeting" } ], "created_count": 2 }
Create multiple action items in a single request. Maximum 50 per batch.
Developer API key. Get one from Settings → Developer → Create Key in the Omi app. Keys are prefixed with omi_dev_.
omi_dev_
List of action items to create (max 50).
50
Show child attributes
Batch creation result.
Number of action items created.