Getting Newtonsoft serializable error while using wait for form task and resume activity

Some datatypes cannot be serialized, which is a necessary step for it to wait for the form task. You have to scope your variables properly.

Also, you shouldn’t use a loop when using the Wait activity. It will create the form task and then Wait on the first iteration of the loop, then resume after the action is completed and then do the next item in the loop.

1 Like