GET api/Subcontracts/{subcontractId}/SignedPrice

Get subcontract signed price

Request Information

URI Parameters

NameDescriptionTypeAdditional information
subcontractId

integer

Required

Body Parameters

None.

Response Information

Resource Description

SignedPriceDto
NameDescriptionTypeAdditional information
SignedPrice

decimal number

None.

Currency

string

None.

Response Formats

application/json, text/json

Sample:
{
  "signedPrice": 1.0,
  "currency": "sample string 1"
}

text/html

Sample:
{"signedPrice":1.0,"currency":"sample string 1"}

application/xml, text/xml

Sample:
<SignedPriceDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.SubcontractAgg">
  <Currency>sample string 1</Currency>
  <SignedPrice>1</SignedPrice>
</SignedPriceDto>