POST api/Subcontracts/{subcontractId}/Wips/Export
Get Exported wip list (filtered, ordered)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| subcontractId | integer |
Required |
Body Parameters
WipListOrderFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Code | string |
None. |
|
| ReportedProgressDateMin | date |
None. |
|
| ReportedProgressDateMax | date |
None. |
|
| CreationDate | Collection of date |
None. |
|
| EntityTypeId | BusinessEntityTypeId |
None. |
|
| EntityName | string |
None. |
|
| ProgressAmount | Collection of decimal number |
None. |
|
| IsLast | boolean |
None. |
|
| EntityCertificationStatusId | integer |
None. |
|
| AppliedCertificationCode | string |
None. |
|
| LastCertifiedAmount | Collection of decimal number |
None. |
|
| SortedColumns | Collection of Order |
None. |
Request Formats
application/json, text/json
Sample:
{
"title": "sample string 1",
"code": "sample string 2",
"reportedProgressDateMin": "2026-05-09T10:45:22.200019+02:00",
"reportedProgressDateMax": "2026-05-09T10:45:22.200019+02:00",
"creationDate": [
"2026-05-09T10:45:22.200019+02:00",
"2026-05-09T10:45:22.200019+02:00"
],
"entityTypeId": 1,
"entityName": "sample string 3",
"progressAmount": [
1.0,
1.0
],
"isLast": true,
"entityCertificationStatusId": 1,
"appliedCertificationCode": "sample string 4",
"lastCertifiedAmount": [
1.0,
1.0
],
"sortedColumns": [
{
"name": "sample string 1",
"descending": true
},
{
"name": "sample string 1",
"descending": true
}
]
}
text/html
Sample:
{"title":"sample string 1","code":"sample string 2","reportedProgressDateMin":"2026-05-09T10:45:22.200019+02:00","reportedProgressDateMax":"2026-05-09T10:45:22.200019+02:00","creationDate":["2026-05-09T10:45:22.200019+02:00","2026-05-09T10:45:22.200019+02:00"],"entityTypeId":1,"entityName":"sample string 3","progressAmount":[1.0,1.0],"isLast":true,"entityCertificationStatusId":1,"appliedCertificationCode":"sample string 4","lastCertifiedAmount":[1.0,1.0],"sortedColumns":[{"name":"sample string 1","descending":true},{"name":"sample string 1","descending":true}]}
application/xml, text/xml
Sample:
<WipListOrderFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.WipAgg">
<SortedColumns xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.SortAndPage.Entities">
<Order>
<Descending>true</Descending>
<Name>sample string 1</Name>
</Order>
<Order>
<Descending>true</Descending>
<Name>sample string 1</Name>
</Order>
</SortedColumns>
<AppliedCertificationCode>sample string 4</AppliedCertificationCode>
<Code>sample string 2</Code>
<CreationDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:dateTime>2026-05-09T10:45:22.200019+02:00</d2p1:dateTime>
<d2p1:dateTime>2026-05-09T10:45:22.200019+02:00</d2p1:dateTime>
</CreationDate>
<EntityCertificationStatusId>1</EntityCertificationStatusId>
<EntityName>sample string 3</EntityName>
<EntityTypeId>Subcontract</EntityTypeId>
<IsLast>true</IsLast>
<LastCertifiedAmount xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:decimal>1</d2p1:decimal>
<d2p1:decimal>1</d2p1:decimal>
</LastCertifiedAmount>
<ProgressAmount xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:decimal>1</d2p1:decimal>
<d2p1:decimal>1</d2p1:decimal>
</ProgressAmount>
<ReportedProgressDateMax>2026-05-09T10:45:22.200019+02:00</ReportedProgressDateMax>
<ReportedProgressDateMin>2026-05-09T10:45:22.200019+02:00</ReportedProgressDateMin>
<Title>sample string 1</Title>
</WipListOrderFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |