PUT api/ContactProperties/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
ContactPropertyDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Value | string |
None. |
|
| ContactPropertyTypeId | globally unique identifier |
None. |
|
| ContactPropertyType | ContactPropertyTypeDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "22169c6d-6d3d-4f91-9d5e-bd1bf4dc823a",
"Value": "sample string 2",
"ContactPropertyTypeId": "535e0b28-228f-4d63-8df3-4bb17321bdbc",
"ContactPropertyType": {
"Id": "5adf9697-4e92-46fa-b0b1-6394e090130e",
"Name": "sample string 2"
}
}
application/xml, text/xml
Sample:
<ContactPropertyDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.DataCapture.Models">
<ContactPropertyType>
<Id>5adf9697-4e92-46fa-b0b1-6394e090130e</Id>
<Name>sample string 2</Name>
</ContactPropertyType>
<ContactPropertyTypeId>535e0b28-228f-4d63-8df3-4bb17321bdbc</ContactPropertyTypeId>
<Id>22169c6d-6d3d-4f91-9d5e-bd1bf4dc823a</Id>
<Value>sample string 2</Value>
</ContactPropertyDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.