Documentation

task.checklistitem.moveafteritem

Moves checklist element and places it in the list after the indicated one.

Method Parameters

ParameterDescription
TASKID Task ID. Required parameter.
ITEMID Checklist element ID. Required parameter.
AFTERITEMID Checklist element ID, after which the given element will be placed. Required parameter.

Attention! Compliance to parameter sequence in the request is mandatory. If sequence is not observed, the request will be completed with errors.

Example

BX24.callMethod(
   'task.checklistitem.moveafteritem',
   [13, 21, 9],
   function(result){
      console.info(result.data());
      console.log(result);
   }
);


© «Bitrix24», 2001-2024
Up