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": "61a05487-1dd1-473a-952d-149156b862d0",
"ParentId": "d085b2ca-888c-4564-b2b3-c1469ac3de7a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"074c7359-b955-4f09-94b6-3cccc2553433",
"361f2da6-1e1b-4c66-bca6-cefca27f072e"
],
"Companies": [
"454cb565-5480-4cba-8da3-a9d582775e37",
"3d3c16f7-4312-4c8e-90ec-d03e281e8635"
],
"Groups": [
"5999ccca-3ca6-4813-9242-6438822e7463",
"20bdc898-b499-4931-875f-22ac15df34e9"
],
"Opportunities": [
"1949dc60-c086-4875-8bf9-06d9960bf77c",
"48d2903b-bfae-4ebd-8af7-120b183585ba"
]
}
}
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.