post https://api.cloud.digifi.io/application-documents/document-folders
How to create an application document folder using the DigiFi API.
The Create Application Document Folder API can be used to create a document folders within an applications.
Example Requests
Below please find the JSON body for two example requests:
- Example 1: Creating a root-level document folder on the application.
- Example 2: Create a folder within another folder on the application.
{
"applicationId": "6141bcd600552639c579f483",
"name": "Folder Name",
"parentId": null
}
{
"applicationId": "6141bcd600552639c579f489",
"name": "Folder Name",
"parentId": "6141bcd600552639c579f482"
}
}