POST api/Subcontracts/{subcontractId}/Wips/{wipId}/CostListDetail

Get all progress position children items

Request Information

URI Parameters

NameDescriptionTypeAdditional information
subcontractId

integer

Required

wipId

integer

Required

Body Parameters

WipCostListProgressFilter
NameDescriptionTypeAdditional information
TypeId

integer

None.

SubTypeId

integer

None.

Description

string

None.

CIAmount

Collection of decimal number

None.

CIProgresss

Collection of decimal number

None.

CIAmountProgress

Collection of decimal number

None.

Page

Page

None.

SortedColumns

Collection of Order

None.

Request Formats

application/json, text/json

Sample:
{
  "typeId": 1,
  "subTypeId": 1,
  "description": "sample string 1",
  "ciAmount": [
    1.0,
    2.0
  ],
  "ciProgresss": [
    1.0,
    2.0
  ],
  "ciAmountProgress": [
    1.0,
    2.0
  ],
  "page": {
    "number": 1,
    "size": 2,
    "skip": 0
  },
  "sortedColumns": [
    {
      "name": "sample string 1",
      "descending": true
    },
    {
      "name": "sample string 1",
      "descending": true
    }
  ]
}

text/html

Sample:
{"typeId":1,"subTypeId":1,"description":"sample string 1","ciAmount":[1.0,2.0],"ciProgresss":[1.0,2.0],"ciAmountProgress":[1.0,2.0],"page":{"number":1,"size":2,"skip":0},"sortedColumns":[{"name":"sample string 1","descending":true},{"name":"sample string 1","descending":true}]}

application/xml, text/xml

Sample:
<WipCostListProgressFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.WipAgg">
  <Page xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.Application.Base.SortAndPage.Entities">
    <Number>1</Number>
    <Size>2</Size>
  </Page>
  <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>
  <CIAmount xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:decimal>1</d2p1:decimal>
    <d2p1:decimal>2</d2p1:decimal>
  </CIAmount>
  <CIAmountProgress xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:decimal>1</d2p1:decimal>
    <d2p1:decimal>2</d2p1:decimal>
  </CIAmountProgress>
  <CIProgresss xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:decimal>1</d2p1:decimal>
    <d2p1:decimal>2</d2p1:decimal>
  </CIProgresss>
  <Description>sample string 1</Description>
  <SubTypeId>1</SubTypeId>
  <TypeId>1</TypeId>
</WipCostListProgressFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiDataResultOfIEnumerableOfWipCostListProgressPositionDto
NameDescriptionTypeAdditional information
Data

Collection of WipCostListProgressPositionDto

None.

Success

boolean

None.

Message

string

None.

Errors

Collection of CustomError

None.

Warnings

Collection of string

None.

Response Formats

application/json, text/json, text/html

Sample:

Sample not available.