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": "<string>",
  "completed": false,
  "due_at": "2023-11-07T05:31:56Z"
}
'
{
  "completed": true,
  "description": "<string>",
  "id": "<string>",
  "completed_at": "2023-11-07T05:31:56Z",
  "conversation_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "due_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Send Authorization: Bearer <omi_developer_api_key>.

Body

application/json
description
string
required

The action item description

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

Whether the action item is completed

due_at
string<date-time> | null

When the action item is due (ISO format with timezone)

Response

Successful Response

completed
boolean
required
description
string
required
id
string
required
completed_at
string<date-time> | null
conversation_id
string | null
created_at
string<date-time> | null
due_at
string<date-time> | null
updated_at
string<date-time> | null