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": "1de5f41b-0a48-475a-8906-e85360073260",
"ParentId": "d6f59166-4604-4ba7-9c65-713ed8f63a38",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5decbc8d-9217-4750-951f-1625ade8ab37",
"b64e8d70-df6e-488c-b606-2797c6148f2a"
],
"Companies": [
"1f205de8-b540-4bfe-b8bd-7bee5e4cecc0",
"46f6ba40-908a-4fb1-8eec-cff30223a4b9"
],
"Groups": [
"41fb5aec-4b02-4366-842d-56dcc7146deb",
"e9b0d15f-0bb1-4f8f-9593-be115c39e510"
],
"Opportunities": [
"a650f16c-0c25-4331-b4ed-855c4cab3430",
"992e2267-35b0-4807-85ff-3ddbb7a6d458"
]
}
}
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.