GET v1/GetUploadedDocumentsList
Documentation/Notes
Return a list of documents for a specific employee.
Request Information
Authorization required.
Need to send an authorized BDtoken under the Authorization header along with the call.
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userName |
Username of the employee whose documents are being listed. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DocumentFiles| Name | Description | Type | Additional information |
|---|---|---|---|
| Label | string |
None. |
|
| FileName | string |
None. |
|
| Type | string |
None. |
|
| SubType | string |
None. |
|
| CreatedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"label": "sample string 1",
"fileName": "sample string 2",
"type": "sample string 3",
"subType": "sample string 4",
"createdDate": "2025-11-03T14:57:25.9690892-06:00"
},
{
"label": "sample string 1",
"fileName": "sample string 2",
"type": "sample string 3",
"subType": "sample string 4",
"createdDate": "2025-11-03T14:57:25.9690892-06:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfDocumentFiles xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Portal.PublicAPI.Models.V1">
<DocumentFiles>
<CreatedDate>2025-11-03T14:57:25.9690892-06:00</CreatedDate>
<FileName>sample string 2</FileName>
<Label>sample string 1</Label>
<SubType>sample string 4</SubType>
<Type>sample string 3</Type>
</DocumentFiles>
<DocumentFiles>
<CreatedDate>2025-11-03T14:57:25.9690892-06:00</CreatedDate>
<FileName>sample string 2</FileName>
<Label>sample string 1</Label>
<SubType>sample string 4</SubType>
<Type>sample string 3</Type>
</DocumentFiles>
</ArrayOfDocumentFiles>