Skip to main content
POST
/
v1
/
dev
/
user
/
action-items
Create action item
curl --request POST \
  --url https://api.omi.me/v1/dev/user/action-items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "Review pull request #123",
  "completed": false,
  "due_at": "2025-12-08T15:00:00+00:00"
}
'
{
  "id": "action_abc123",
  "description": "Review pull request #123",
  "completed": false,
  "created_at": "2025-12-06T10:30:00Z",
  "updated_at": "2025-12-06T10:30:00Z",
  "due_at": "2025-12-08T15:00:00+00:00",
  "completed_at": null,
  "conversation_id": null
}

Authorizations

Authorization
string
header
required

Developer API key. Get one from Settings → Developer → Create Key in the Omi app. Keys are prefixed with omi_dev_.

Body

application/json
description
string
required

The action item description.

Required string length: 1 - 500
completed
boolean
default:false

Whether completed.

due_at
string<date-time>

Due date in ISO 8601 format.

Response

The created action item.

id
string

Unique identifier.

description
string

The action item text.

completed
boolean

Whether completed.

created_at
string<date-time>
updated_at
string<date-time>
due_at
string<date-time> | null

Due date (null if not set).

completed_at
string<date-time> | null

When completed (null if pending).

conversation_id
string | null

Associated conversation ID.