GET api/Subcontracts/{subcontractId}/Sections/{sectionId}/Documents/Progress
Gets all price list document (latest versions) associated with a subcontract and a section
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| subcontractId | integer |
Required |
|
| sectionId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DocumentVersionInfoDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FileName | string |
None. |
|
| Uploaded | date |
None. |
|
| Version | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"fileName": "sample string 2",
"uploaded": "2026-05-09T14:07:17.2505982+02:00",
"version": 4
},
{
"id": 1,
"fileName": "sample string 2",
"uploaded": "2026-05-09T14:07:17.2505982+02:00",
"version": 4
}
]
text/html
Sample:
[{"id":1,"fileName":"sample string 2","uploaded":"2026-05-09T14:07:17.2505982+02:00","version":4},{"id":1,"fileName":"sample string 2","uploaded":"2026-05-09T14:07:17.2505982+02:00","version":4}]
application/xml, text/xml
Sample:
<ArrayOfDocumentVersionInfoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.DocumentModule.Application.Dtos.Dtos.DocumentAgg">
<DocumentVersionInfoDto>
<FileName>sample string 2</FileName>
<Id>1</Id>
<Uploaded>2026-05-09T14:07:17.2505982+02:00</Uploaded>
<Version>4</Version>
</DocumentVersionInfoDto>
<DocumentVersionInfoDto>
<FileName>sample string 2</FileName>
<Id>1</Id>
<Uploaded>2026-05-09T14:07:17.2505982+02:00</Uploaded>
<Version>4</Version>
</DocumentVersionInfoDto>
</ArrayOfDocumentVersionInfoDto>