logo

Back to Help Home Page.

PUT Api/EstateGroups/{id}

Updates the specified estateGroup.

Request Information

URI Parameters

NameDescriptionTypeAdditional information

id

The identifier of the estateGroup to update.

integer

Required

Body Parameters

The estateGroup.

ChappReport.Site.Areas.Api.Models.V1.EstateGroupV1ModelRequest
NameDescriptionTypeAdditional information

Reference

The reference of the broker,expert,... This will be shown on the report.

string

Max length: 100

Address

The address of the estateGroup.

ChappReport.Site.Areas.Api.Models.V1.AddressV1Model

Required

OfficeId

The id of the office the estategroup is linked to (optional, requires Office product).

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Reference": "MyEstateGroupRef1",
  "Address": {
    "Street": "Stadsplein",
    "HouseNumber": 1,
    "HouseNumberExtension": "a",
    "ZipCode": "8800",
    "City": "Roeselare",
    "Country": "BE"
  }
}

application/xml, text/xml

Sample:
<EstateGroupV1ModelRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChappReport.Site.Areas.Api.Models.V1">
  <Address>
    <City>Roeselare</City>
    <Country>BE</Country>
    <HouseNumber>1</HouseNumber>
    <HouseNumberExtension>a</HouseNumberExtension>
    <Mailbox i:nil="true" />
    <State i:nil="true" />
    <Street>Stadsplein</Street>
    <ZipCode>8800</ZipCode>
  </Address>
  <OfficeId i:nil="true" />
  <Reference>MyEstateGroupRef1</Reference>
</EstateGroupV1ModelRequest>

Response Information

Resource Description

None.