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": "27174db8-bb04-4fb3-8bcc-0f442d2c2771", "ParentId": "7170d03a-15dd-4990-8886-0fbf2f98ad04", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "8838db2b-2ea5-4f74-8048-8a5e190d399b", "3b49c1f8-0627-4264-aeb8-72ebc7d081e8" ], "Companies": [ "638b61bb-3089-4e23-a8c7-245760b969c1", "da76c63d-544d-4ba5-a68a-5abbdbbbece1" ], "Groups": [ "1e3e5495-f5b1-4e23-b828-13bef8934114", "48db0733-4c7f-45f9-aaac-9a9901772bd5" ], "Opportunities": [ "92e329a9-f318-4e70-8be8-d47da09e627b", "1fc3825e-53db-4ac7-ba31-96c03feec996" ] } }
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.