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

NameDescriptionTypeAdditional information
userName

Username of the employee whose documents are being listed.

string

Required


Body Parameters

None.


Response Information

Resource Description

Collection of DocumentFiles
NameDescriptionTypeAdditional 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": "2024-10-15T03:10:17.2058391-05:00"
  },
  {
    "label": "sample string 1",
    "fileName": "sample string 2",
    "type": "sample string 3",
    "subType": "sample string 4",
    "createdDate": "2024-10-15T03:10:17.2058391-05: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>2024-10-15T03:10:17.2058391-05: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>2024-10-15T03:10:17.2058391-05:00</CreatedDate>
    <FileName>sample string 2</FileName>
    <Label>sample string 1</Label>
    <SubType>sample string 4</SubType>
    <Type>sample string 3</Type>
  </DocumentFiles>
</ArrayOfDocumentFiles>