PUT api/Contacts/{id}
Updates an existing Contact Record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Contact Id that is to be updated |
globally unique identifier |
Required |
Body Parameters
The Contact record data must be passed in through the body of the request in Json format. Set Content-Type header to application/json
MutableEntityExtended| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ParentId |
This field will only include data when working with Group records. |
globally unique identifier |
None. |
| Fields | Dictionary of string [key] and Object [value] |
None. |
|
| LinkedEntities | LinkedEntities |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "ef8340c7-03a4-43ff-a638-d426ddd58233",
"ParentId": "b9a8ed2a-14e9-4462-95b5-be6c1f3e1484",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"200c81f9-3947-49e5-a6f8-07ca61010b76",
"38ffd465-e506-411d-a608-db3a88052d7c"
],
"Companies": [
"aad5ad63-4d39-4c29-ae23-b320772c1657",
"c5063e08-b582-4e54-9065-43ddb865d07b"
],
"Groups": [
"4763c220-b7a8-4b69-b612-80e9af770a11",
"b434e0fb-cfe7-4b4b-abc5-21f60efdca06"
],
"Opportunities": [
"6e1eabff-a1e5-4e29-8c54-8b7ce398ecd7",
"96426246-21aa-4def-9fcc-47fcb325ab06"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
This endpoint does not return any data when record is updated.
None.