Upload Application Document

How to upload a document to an application using the DigiFi API.

The Upload Application Document API can be used to upload documents to applications. The document can also be connected directly to an application task.

🚧

Request Content-Type

Use multipart/form-data content-type for this request.


Example Requests

Below please find the JSON body for three example requests:

  • Example 1: Uploading a document to the root folder of the application.
  • Example 2: Uploading a document to a specific folder of the application.
  • Example 3: Uploading a document and attaching it to an application task.
  • Example 4: Uploading a document with access permissions.
{
  "applicationId": "63ca97b71da7c1618788eeb8",
  "parentId": null
}
{
  "applicationId": "63ca97b71da7c1618788eeb8",
  "parentId": "63caa8b10ba062b3cea418d6"
}
{
  "applicationId": "63ca97b71da7c1618788eeb8",
  "parentId": "63caa8b10ba062b3cea418d6",
  "taskId": "63caa8fbc21b8d1bba81b19a"
}
{
  "applicationId": "63ca97b71da7c1618788eeb8",
  "parentId": "63caa8b10ba062b3cea418d6",
  "accessPermissions": [
     {
      	"entityId": "63ca97d0f2521cdcc460b23a",
        "entityType": "borrower",
        "accessGranted": true
     }
  ]
}
Language
Authorization
Header