Recordings

Tick an action item, or reopen it

Marks the item done or active. Doing this also marks the item as a person's rather than the model's, which is what stops a later re-analysis of the same meeting from quietly reopening it.

patchhttps://api-notetaker.nabrah.ai/ext/v1/action-items/{itemId}

معاملات المسار

itemIdstring · uuidمطلوب

جسم الطلب

statusenumمطلوب
activedone

الطلب

curl -X PATCH https://api-notetaker.nabrah.ai/ext/v1/action-items/{itemId} \
  -H "Authorization: Bearer $NABRAH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "status": "active"
}'

الاستجابات

200One action item.
401No key, an unknown key, or one that has been revoked or has expired.
403The key is read only, or lacks the reach for this route.
404No such record — or one that belongs to another account.
422The body or query failed validation; details names the field.
429Too many requests. Retry-After says how long to wait.
{
  "data": {}
}