POST api/Projects/{projectId}/ClaimsSubcontractsProjectList

Endpoint para conulta de claims por proyecto

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

integer

Required

Body Parameters

ProjectClaimsFilter
NameDescriptionTypeAdditional information
SubcontractCode

string

None.

SubcontractorCode

string

None.

SubcontractorName

string

None.

Code

string

None.

Description

string

None.

CovidRelatedId

integer

None.

StatusId

integer

None.

CurrencyType

integer

None.

IssueDate

Collection of date

None.

ClaimedAmount

Collection of decimal number

None.

SettledAmount

Collection of decimal number

None.

PendingAmount

Collection of decimal number

None.

ItgLogCurrencyType

ItgLogCurrencyTypeId

None.

Page

Page

None.

SortedColumns

Collection of Order

None.

Request Formats

application/json, text/json

Sample:
{
  "subcontractCode": "sample string 2",
  "subcontractorCode": "sample string 3",
  "subcontractorName": "sample string 4",
  "code": "sample string 5",
  "description": "sample string 6",
  "covidRelatedId": 1,
  "statusId": 1,
  "currencyType": 1,
  "issueDate": [
    "2026-05-09T14:04:08.5628464+02:00",
    "2026-05-09T14:04:08.5628464+02:00"
  ],
  "claimedAmount": [
    1.0,
    1.0
  ],
  "settledAmount": [
    1.0,
    1.0
  ],
  "pendingAmount": [
    1.0,
    1.0
  ],
  "itgLogCurrencyType": 1,
  "page": {
    "number": 1,
    "size": 2,
    "skip": 0
  },
  "sortedColumns": [
    {
      "name": "sample string 1",
      "descending": true
    },
    {
      "name": "sample string 1",
      "descending": true
    }
  ]
}

text/html

Sample:
{"subcontractCode":"sample string 2","subcontractorCode":"sample string 3","subcontractorName":"sample string 4","code":"sample string 5","description":"sample string 6","covidRelatedId":1,"statusId":1,"currencyType":1,"issueDate":["2026-05-09T14:04:08.5628464+02:00","2026-05-09T14:04:08.5628464+02:00"],"claimedAmount":[1.0,1.0],"settledAmount":[1.0,1.0],"pendingAmount":[1.0,1.0],"itgLogCurrencyType":1,"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:
<ProjectClaimsFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.ProjectAgg">
  <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>
  <ClaimedAmount xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:decimal>1</d2p1:decimal>
    <d2p1:decimal>1</d2p1:decimal>
  </ClaimedAmount>
  <Code>sample string 5</Code>
  <CovidRelatedId>1</CovidRelatedId>
  <CurrencyType>1</CurrencyType>
  <Description>sample string 6</Description>
  <IssueDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:dateTime>2026-05-09T14:04:08.5628464+02:00</d2p1:dateTime>
    <d2p1:dateTime>2026-05-09T14:04:08.5628464+02:00</d2p1:dateTime>
  </IssueDate>
  <ItgLogCurrencyType>OriginalCurrency</ItgLogCurrencyType>
  <PendingAmount xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:decimal>1</d2p1:decimal>
    <d2p1:decimal>1</d2p1:decimal>
  </PendingAmount>
  <SettledAmount xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:decimal>1</d2p1:decimal>
    <d2p1:decimal>1</d2p1:decimal>
  </SettledAmount>
  <StatusId>1</StatusId>
  <SubcontractCode>sample string 2</SubcontractCode>
  <SubcontractorCode>sample string 3</SubcontractorCode>
  <SubcontractorName>sample string 4</SubcontractorName>
</ProjectClaimsFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiDataResultOfIPagedListOfProjectClaimsDto
NameDescriptionTypeAdditional information
Data

IPagedListOfProjectClaimsDto

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.