PUT api/management/cemetery/structures/{structureId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| structureId | globally unique identifier |
Required |
Body Parameters
ManagementStructureCreateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Reference | string |
Required |
|
| Type | string |
Required |
|
| Subtype | string |
None. |
|
| Topology | ManagementStructureTopology |
None. |
|
| Relevant | boolean |
Required |
|
| InsideBurialPlace | boolean |
Required |
|
| Latitude | string |
Required |
|
| Longitude | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Reference": "sample string 1",
"Type": "sample string 2",
"Subtype": "sample string 3",
"Topology": {
"FieldA": "sample string 1",
"FieldB": "sample string 2",
"FieldC": "sample string 3",
"FieldD": "sample string 4",
"FieldE": "sample string 5"
},
"Relevant": true,
"InsideBurialPlace": true,
"Latitude": "sample string 6",
"Longitude": "sample string 7"
}
application/xml, text/xml
Sample:
<ManagementStructureCreateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServices.Models">
<InsideBurialPlace>true</InsideBurialPlace>
<Latitude>sample string 6</Latitude>
<Longitude>sample string 7</Longitude>
<Reference>sample string 1</Reference>
<Relevant>true</Relevant>
<Subtype>sample string 3</Subtype>
<Topology>
<FieldA>sample string 1</FieldA>
<FieldB>sample string 2</FieldB>
<FieldC>sample string 3</FieldC>
<FieldD>sample string 4</FieldD>
<FieldE>sample string 5</FieldE>
</Topology>
<Type>sample string 2</Type>
</ManagementStructureCreateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.