put https://cloud.digifi.io/v2/los/api/application-documents/[id]
How to update an application document using the DigiFi API.
The Update Application Document API can be used to update a document (or document folder) that was previously uploaded to an application.
Example Requests
Below please find the JSON body for two example requests:
- Example 1: Renaming the document or document folder.
- Example 2: Moving a document or folder to another folder.
- Example 3: Setting access permissions for a document.
{
"document": {
"name": "Other Name"
}
}
{
"document": {
"parentId": "Other Parent Id"
}
}
{
"document": {
"accessPermissions": [
{
"entityId": "ID of Borrower/Intermediary/Co-Borrower assigned to Application",
"entityType": "`borrower` for Borrower/Co-Borrower and `intermediary` for Intermediary",
"accessGranted": true
}
]
}
}