Hi,
How can we get the details of checklists in an update?
When I query an item update using
query{
items(ids:304256113){
updates{
body
text_body
}
}
},
in the body, it gives
“<ul data-checklist-holder=“true” data-checklist-id=“5083048”>”
I get the checklist text in text_body, but how to know how many points have been ticked in the list? I am trying to achieve this feature ![]()
Hi @dipro, can you help me in this?
Hey @moumitapaul – at the moment checklists are not supported by the API. However, I’ll add this as a feature request so it can be picked up by our Product team.
@dipro any update on this?
Hello there @moumitapaul,
If you use the query you shared here, you will see something like this in the result:
{
"data": {
"items": [
{
"updates": [
{
"body": "<ul data-checklist-holder='true' data-checklist-id='123456789'></ul>",
"text_body": "○ Item 1\n○ Item 2\n○ Item 3"
}
]
}
]
},
"account_id": 1111111
}
If one of the items is checked, you will see something like this (Item 1 is checked):
"text_body": "● Item 1\n○ Item 2\n○ Item 3"