GET api/v2/works/{workId}/summaryprices

Request

URI Parameters

NameDescriptionTypeAdditional information
workId

integer

Required

Response

WorkSummaryPrices
NameDescriptionTypeAdditional information
ByPriceItemTypes

Collection of WorkSummaryByPriceItemType

TotalPriceToNotBill

decimal number

TotalPriceToBill

decimal number

TotalPriceBilled

decimal number

TotalPrice

decimal number

Response Format

application/json, text/json

Sample:
{
  "ByPriceItemTypes": [
    {
      "PriceItemType": {
        "Id": 1,
        "Identification": "sample string 2",
        "Active": true
      },
      "TotalPrice": 1.1
    },
    {
      "PriceItemType": {
        "Id": 1,
        "Identification": "sample string 2",
        "Active": true
      },
      "TotalPrice": 1.1
    }
  ],
  "TotalPriceToNotBill": 1.1,
  "TotalPriceToBill": 2.1,
  "TotalPriceBilled": 3.1,
  "TotalPrice": 4.1
}

text/html

Sample:
{"ByPriceItemTypes":[{"PriceItemType":{"Id":1,"Identification":"sample string 2","Active":true},"TotalPrice":1.1},{"PriceItemType":{"Id":1,"Identification":"sample string 2","Active":true},"TotalPrice":1.1}],"TotalPriceToNotBill":1.1,"TotalPriceToBill":2.1,"TotalPriceBilled":3.1,"TotalPrice":4.1}