PUT request/dcda/customer/{CustomerId}/quote/{QuoteId}/update

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CustomerId

integer

Required

QuoteId

integer

Required

Body Parameters

DCDAQuoteUpdate
NameDescriptionTypeAdditional information
Meters

Collection of DCDAMeterPut

None.

Request Formats

application/json, text/json

Sample:
{
  "meters": [
    {
      "meterId": 1,
      "serviceTypeId": 64,
      "dcdaContractStartDate": "2026-09-17T00:54:03.6524528+00:00",
      "mopContractStartDate": "2026-09-17T00:54:03.6524528+00:00"
    },
    {
      "meterId": 1,
      "serviceTypeId": 64,
      "dcdaContractStartDate": "2026-09-17T00:54:03.6524528+00:00",
      "mopContractStartDate": "2026-09-17T00:54:03.6524528+00:00"
    }
  ]
}

text/html

Sample:
{"meters":[{"meterId":1,"serviceTypeId":64,"dcdaContractStartDate":"2026-09-17T00:54:03.6524528+00:00","mopContractStartDate":"2026-09-17T00:54:03.6524528+00:00"},{"meterId":1,"serviceTypeId":64,"dcdaContractStartDate":"2026-09-17T00:54:03.6524528+00:00","mopContractStartDate":"2026-09-17T00:54:03.6524528+00:00"}]}

application/xml, text/xml

Sample:
<DCDAQuoteUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.DCDAMOP">
  <Meters>
    <DCDAMeterPut>
      <DCDAContractStartDate>2026-09-17T00:54:03.6524528+00:00</DCDAContractStartDate>
      <MOPContractStartDate>2026-09-17T00:54:03.6524528+00:00</MOPContractStartDate>
      <MeterId>1</MeterId>
      <ServiceTypeId>64</ServiceTypeId>
    </DCDAMeterPut>
    <DCDAMeterPut>
      <DCDAContractStartDate>2026-09-17T00:54:03.6524528+00:00</DCDAContractStartDate>
      <MOPContractStartDate>2026-09-17T00:54:03.6524528+00:00</MOPContractStartDate>
      <MeterId>1</MeterId>
      <ServiceTypeId>64</ServiceTypeId>
    </DCDAMeterPut>
  </Meters>
</DCDAQuoteUpdate>

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>