But about the Card Checklists, unfortunately is not possible to update or create new card checklists through our API, only Checklist Fields are available.
I’ll communicate this limitation to our product team.
Thank you!
@Marcos Carvalho thanks so much for your notes here. Very helpful.
One clarification.
Specifically I wanted to check that “Card Checklists” vs. “Field Checklists” are accessible.
Reviewing the documentation on Card Object - it only shows the “title” below as updatable, so I’m not clear on this.
Is update used to add fields at card level? e.g. attachments, card checklists, comments, fields (i.e. start form fields) etc.
Specific Question How can I add a “card checklist” via mutation similar to the one below:
Does the above make sense? Let me know if I haven’t made clear anything what I’m trying to achieve/ understand, so I can add more clarity.
Thanks again for your help.
hey there @Keto-Faster, I’m Marcos from Pipefy Engineering Team.
In order to to list all fields and its values in a Card you can use this query below, where you can input the card ID and retrieve any information from any field inside it.
{ card(id: $cardId) { fields { field { type } value } } }
About the checklist fields, if you want to create a new field to be in a specific phase but not fill its value yet, you can use the mutation createPhaseField which allows you to create new fields.