Batch Create Application Tasks

How to create a task using the DigiFi API.

The Batch Create Task API can be used to create multiple application task. You can find attributes for batch field in this section.


Example Requests

Below please find the JSON body for request example

{
  "applicationId": "63ca97b71da7c1618788eeb8",
  "batch": [
    {
      "title": "Task Title",
      "externalAssignee": {
        "assigneeType": "borrower",
        "assigneeId": "63ca97d0f2521cdcc460b23a"
      },
      "dueDateAndTime": "2024-12-21T20:59:11.282Z",
      "variables": [
        "first_variable",
        "second_variable"
      ],
      "blockedApplicationStatusIds": [
        "63ca9841617f8daab0c9fe25",
        "63caa400703e5f36e3155e6a"
      ],
      "sendExternalAssignmentEmail": true
    },
    {
      "title": "Task Title 2",
      "externalAssignee": {
        "assigneeType": "intermediary",
        "assigneeId": "65c0d1185d7c4c9afe5869b6"
      },
      "dueDateAndTime": "2024-12-24T20:59:11.282Z",
      "variables": [
        "third_variable"
      ],
      "sendExternalAssignmentEmail": true
    }
  ]
}
Language
Authorization
Header