PUT api/estimate/{id}

Update details of an Estimate

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

the unique id of the form/project

integer

Required

Body Parameters

JOSN Object with estimate details

FeEstimateDetails
NameDescriptionTypeAdditional information
fee

Collection of feeDetails

None.

OOPS

Collection of oopDetails

None.

Request Formats

application/json, text/json, application/scim+json

Sample:
{
  "fee": [
    {
      "guid": "sample string 1",
      "phase": 2,
      "phaseRow": 3,
      "title": "sample string 4",
      "department": "sample string 5",
      "role": "sample string 6",
      "category": "sample string 7",
      "hours": 8.1,
      "startDate": "sample string 9",
      "endDate": "sample string 10",
      "extraColumn": "sample string 11",
      "extraColumn2": "sample string 12",
      "quantity": 13,
      "total": 14.1,
      "SellCost": 15.1
    },
    {
      "guid": "sample string 1",
      "phase": 2,
      "phaseRow": 3,
      "title": "sample string 4",
      "department": "sample string 5",
      "role": "sample string 6",
      "category": "sample string 7",
      "hours": 8.1,
      "startDate": "sample string 9",
      "endDate": "sample string 10",
      "extraColumn": "sample string 11",
      "extraColumn2": "sample string 12",
      "quantity": 13,
      "total": 14.1,
      "SellCost": 15.1
    }
  ],
  "OOPS": [
    {
      "guid": "sample string 1",
      "phase": 2,
      "rsIndex": 3,
      "title": "sample string 4",
      "value": 5.1,
      "quantity": 6,
      "margin": 7.1,
      "extra1": "sample string 8",
      "extra2": "sample string 9",
      "meta1": "sample string 10",
      "meta2": "sample string 11",
      "meta3": "sample string 12",
      "meta4": "sample string 13",
      "total": 14.1,
      "SellCost": 15.1
    },
    {
      "guid": "sample string 1",
      "phase": 2,
      "rsIndex": 3,
      "title": "sample string 4",
      "value": 5.1,
      "quantity": 6,
      "margin": 7.1,
      "extra1": "sample string 8",
      "extra2": "sample string 9",
      "meta1": "sample string 10",
      "meta2": "sample string 11",
      "meta3": "sample string 12",
      "meta4": "sample string 13",
      "total": 14.1,
      "SellCost": 15.1
    }
  ]
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'FeEstimateDetails'.

Response Information

Resource Description

None.