Closed bentleycook closed 7 years ago
List of actions that I think are not returned when listing actions.
"addAdminToOrganization" # Deprecated in favor of makeAdminOfOrganization
"addBoardsPinnedToMember"
"addLabelToCard"
"copyChecklist"
"createBoardInvitation"
"createBoardPreference"
"createCheckItem"
"createChecklist"
"createLabel"
"createOrganizationInvitation"
"deleteCheckItem"
"deleteComment"
"deleteLabel"
"makeAdminOfOrganization"
"removeAdminFromBoard" # Deprecated in favor of makeNormalMemberOfBoard
"removeAdminFromOrganization" # Deprecated in favor of makeNormalMemberOfOrganization
"removeBoardsPinnedFromMember"
"removeLabelFromCard"
"removeMemberFromBoard"
"removeMemberFromOrganization"
"updateCheckItem"
"updateComment"
"updateLabel"
"voteOnCard"```
Reordering checklist items does not result in a callback related to an order update.
Moving a checklist item from checklist to checklist (on the same card) does not result in a callback related to the checkitem move.
Unable to list actions with type 'updateCheckItem'
Changing the name of a checklistItem will trigger a webhook on the board and will POST an action of type updateCheckItem with the old and new name. However, no
/actions/
resources ever return action types of updateCheckItem:/cards/idCard/actions/
,/boards/idBoard/actions/
. However you can get that specific action instance:/actions/idAction/
.Need to document this behavior and other ignored action types.