GET api/documentfolder/bridgeparentfolder?parentFolderId={parentFolderId}&folderName={folderName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| parentFolderId | string |
Required |
|
| folderName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
DocumentFolder| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FolderName | string |
None. |
|
| BridgeId | integer |
None. |
|
| ParentDocumentFolderId | integer |
None. |
|
| UpdatedAt | date |
None. |
|
| MajorVersion | integer |
None. |
|
| MinorVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"FolderName": "sample string 2",
"BridgeId": 3,
"ParentDocumentFolderId": 1,
"UpdatedAt": "2025-11-08T12:10:40.0635961Z",
"MajorVersion": 1,
"MinorVersion": 1
}
application/xml, text/xml
Sample:
<DocumentFolder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Api.DataModels"> <MajorVersion>1</MajorVersion> <MinorVersion>1</MinorVersion> <UpdatedAt>2025-11-08T12:10:40.0635961Z</UpdatedAt> <BridgeId>3</BridgeId> <FolderName>sample string 2</FolderName> <Id>1</Id> <ParentDocumentFolderId>1</ParentDocumentFolderId> </DocumentFolder>