Create board item
Create one item.
status/priority are given as LABELS and resolved to the board's options server-side (unknown label → 422 with the valid labels). Dedupe fingerprint + provenance are stamped into aiMeta. Requires boards:write.
Request
curl -X POST "https://api.blueticks.co/v1/boards//items" \ -H "Content-Type: application/json" \ -d '{ "text": "" }'{
"success": true,
"data": {
"item_id": "string",
"text": "string",
"status": {
"label": "string",
"bgcolor": "string"
},
"priority": {
"label": "string",
"bgcolor": "string"
},
"due_date": "string",
"cells": {
"property1": "string",
"property2": "string"
},
"source": {
"chat_id": "string",
"chat_name": "string",
"message_key": "string",
"excerpt": "string",
"extracted_at": 0
},
"confidence": 0,
"last_seen_at": 0,
"web_url": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
}{
"success": false,
"error": {
"code": "string",
"message": "string",
"requestId": "string",
"details": [
{
"path": "string",
"code": "string",
"message": "string"
}
]
}
}Path Parameters
Request Body
application/json
Response
Response Body
application/json
application/json