Function: getCardChecklists()
ts
function getCardChecklists(client, parameters): Promise<object[]>;Defined in: api/cards.ts:294
Get the checklists on a card
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { checkItemFields?: | "name" | "type" | "state" | "idMember" | "due" | "dueReminder" | "pos" | "nameData"; checkItems?: "all" | "none"; fields?: "name" | "type" | "all" | "state" | "pos" | "nameData"; filter?: "all" | "none"; id: unknown; } | - |
parameters.checkItemFields? | | "name" | "type" | "state" | "idMember" | "due" | "dueReminder" | "pos" | "nameData" | all or a comma-separated list of: name,nameData,pos,state,type,due,dueReminder,idMember |
parameters.checkItems? | "all" | "none" | all or none |
parameters.fields? | "name" | "type" | "all" | "state" | "pos" | "nameData" | all or a comma-separated list of: idBoard,idCard,name,pos |
parameters.filter? | "all" | "none" | all or none |
parameters.id | unknown | The ID of the Card |
Returns
Promise<object[]>