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
MutableEntityExtendedName | 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": "f4c5687e-f421-4b3d-a0ad-5362be64e283", "ParentId": "e5b11b99-9855-41d7-b7f1-3dd476769f7d", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "5e9bcd34-bc9a-4b27-a612-b81eefebe41a", "2c9405dc-4558-40d3-b7eb-a47e0d2e61a4" ], "Companies": [ "9bdd1da2-eb07-4664-84f5-8b12fb577bbe", "8c265a96-25c9-438e-ad84-741f00d9843c" ], "Groups": [ "63ab0bad-c93a-4929-8bf1-5db226a66e89", "ad066db9-200f-4bbd-bc1f-1df6365beb7d" ], "Opportunities": [ "b41201f8-bbfe-4e0a-92e5-a4535a51340e", "92d97b20-d8b7-46cd-935c-a860ebcae74a" ] } }
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.